diff --git a/bumpup.sh b/bumpup.sh index 732f544..7c0c07f 100644 --- a/bumpup.sh +++ b/bumpup.sh @@ -5,5 +5,5 @@ NEW_VER=$(($VER + 1)) echo "current version: $VER, new version: $NEW_VER" sed -i "s/$VERSION_STRING $VER$/$VERSION_STRING $NEW_VER/" server.js -# git commit -am "bumpup to $NEW_VER" -# git push public master +git commit -am "bumpup to $NEW_VER" +git push public diff --git a/server.js b/server.js index d3e903d..256d49f 100644 --- a/server.js +++ b/server.js @@ -1,5 +1,5 @@ const port = 8080 -const version = 4 +const version = 35 let http = require('http') http.createServer(function(request, response) {