We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70acc5e commit ce227ebCopy full SHA for ce227eb
1 file changed
build/publish.sh
@@ -3,7 +3,8 @@
3
export NODE_PATH=$NODE_PATH:./node_modules
4
export PATH=/box/www/devtools/bin:$PATH
5
6
-VERSION=$(./build/current_version.sh)
+# Temp version
7
+VERSION="XXX"
8
9
install_dependencies() {
10
echo "--------------------------------------------------------"
@@ -130,6 +131,8 @@ publish_to_npm() {
130
131
git fetch --prune origin '+refs/tags/*:refs/tags/*' || exit 1
132
git clean -fdX || exit 1
133
134
+ VERSION=$(./build/current_version.sh)
135
+
136
if [[ $(git status --porcelain 2>/dev/null| grep "^??") != "" ]] ; then
137
echo "----------------------------------------------------"
138
echo "Your branch has untracked files!"
0 commit comments