Skip to content

Commit

Permalink
create-public-release.sh: Update it
Browse files Browse the repository at this point in the history
  • Loading branch information
t-b committed Mar 30, 2023
1 parent 7329acf commit 4c1b419
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions create-public-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

set -e

newVersion=1.09
revision=igortest-v$newVersion
newVersion=1.10
revision=v$newVersion

filesToWatch="procedures docu helper INSTALL.txt"

for i in `ls procedures/*.ipf`; do
for i in `find . -iname "*.ipf"`; do
sed -i "s/#pragma version=.*/#pragma version=$newVersion/" $i
sed -i "s/PKG_VERSION =.*$/PKG_VERSION = $newVersion/" $i
done
Expand All @@ -19,7 +19,7 @@ if [ ! -z "$(git status -s --untracked-files=no $filesToWatch)" ]; then
exit 0
fi

basename=$revision
basename=igortest-$revision
zipFile=$basename.zip
folder=releases/$basename

Expand Down

0 comments on commit 4c1b419

Please sign in to comment.