Skip to content

Commit

Permalink
Update release v1.4 zip
Browse files Browse the repository at this point in the history
  • Loading branch information
Mangara committed Apr 3, 2022
1 parent 218961b commit b96644c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Binary file added Publy 1.4.zip
Binary file not shown.
8 changes: 4 additions & 4 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ if [ $opt_final ]
then
# Commit these changes
echo -n "Committing changes... "
hg add "$ZIP_FILE"
hg remove --after
hg commit -m "Updated release zip."
git add -u # Make sure git picks up removal of old zip file
git add "$ZIP_FILE"
git commit -m "Update release v$version zip"


# Tag the current revision with the release number
hg tag "v$version"
git tag -a "v$version" -m "Tag release v$version"
echo "done."
fi

0 comments on commit b96644c

Please sign in to comment.