Skip to content

Commit

Permalink
'make version 49'
Browse files Browse the repository at this point in the history
  • Loading branch information
sixhat committed Feb 8, 2020
1 parent e2f2d1f commit 11efb96
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/utils.dave.p5.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// utils.dave.p5.js v.44
// utils.dave.p5.js v.50
class Dave {
// Short version of functions bellow.
constructor() {
Expand Down
7 changes: 4 additions & 3 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ mkdir -p ./lib

out="./lib/utils.dave.p5.js"
version=`cat version.txt`
version=$(($version + 1 ))

echo Making version $(($version + 1 ))
echo Making version $version
rm $out

echo CoffeeScript Conversion
Expand All @@ -15,6 +16,6 @@ echo // utils.dave.p5.js v.$(($version + 1 )) > $out
cat src/*.js >> $out
echo $(( $version + 1 )) > version.txt

git commit -a -m 'make $(( $version + 1 ))'
git tag -a v$(( $version + 1 )) -m '$(( $version + 1 ))'
git commit -a -m "'make version $version'"
git tag -a v$version -m "'Version $version'"
git push
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
44
50

0 comments on commit 11efb96

Please sign in to comment.