Skip to content

Commit

Permalink
Fixed path and made executable, as to prevent the wrong shell being used
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanPaulus committed Dec 12, 2024
1 parent b06907e commit 907cd66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/release.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ do
case $cmd in
"--major")
echo "Incrementing Major Version"
NEW_TAG=$(sh ./semver.sh -v major)
NEW_TAG=$(./scripts/semver.sh -v major)
;;
"--minor")
echo "Incrementing Minor Version"
NEW_TAG=$(sh ./semver.sh -v minor)
NEW_TAG=$(./scripts/semver.sh -v minor)
;;
"--patch")
echo "Incrementing Patch Version"
NEW_TAG=$(sh ./semver.sh -v patch)
NEW_TAG=$(./scripts/semver.sh -v patch)
;;
*)
echo "No version specified"
Expand Down
Empty file modified scripts/semver.sh
100644 → 100755
Empty file.

0 comments on commit 907cd66

Please sign in to comment.