From 97f925e681f89c73b213130959c1ddb0bf63fa8c Mon Sep 17 00:00:00 2001 From: Adrian Hesketh Date: Fri, 24 Feb 2023 16:26:02 +0000 Subject: [PATCH] fix: add shebang for linux --- push-tag.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/push-tag.sh b/push-tag.sh index 479f31a5e..f62cefa7a 100755 --- a/push-tag.sh +++ b/push-tag.sh @@ -1,3 +1,4 @@ +#!/bin/sh export VERSION=`git rev-list --count HEAD`; echo Adding git tag with version v0.2.${VERSION}; git tag v0.2.${VERSION};