Skip to content

Commit

Permalink
Make scripts executable
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Sep 4, 2021
1 parent a3e5acf commit 6f2726a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/release.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ then
exit 1
fi

git checkout master
git checkout v3

PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
| sed 's/^\.\///' \
Expand All @@ -59,7 +59,7 @@ done

sed --in-place "s/\(return \)\"[^\"]*\"/\1\"${TAG#v}\"/" ./version.go

git checkout -b release/${TAG} master
git checkout -b release/${TAG} v3
git add -u
git commit -m "Release $TAG (release.sh)"
git push origin release/${TAG}
Empty file modified scripts/tag.sh
100644 → 100755
Empty file.

0 comments on commit 6f2726a

Please sign in to comment.