Skip to content

Commit b0f0630

Browse files
author
Simon Hofmann
committed
Updated deploy script on appveyor
1 parent cee09f7 commit b0f0630

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ test_script:
3838
- npm run test:it
3939

4040
on_success:
41-
- sh: if [ -z ${APPVEYOR_REPO_TAG_NAME+x} ] ; then echo $APPVEYOR_REPO_TAG_NAME; else echo "No tag"; fi
41+
- sh: if [ ${APPVEYOR_REPO_TAG_NAME+x} ] ; then echo $APPVEYOR_REPO_TAG_NAME; else echo "No tag"; fi
4242
- sh: if [ "${nodejs_version+x}" = "12" ]; then echo "node 12"; else echo "node != 12"; fi
43-
- sh: if [ -z ${APPVEYOR_REPO_TAG_NAME+x} ] && [ "${nodejs_version+x}" = "12" ]; then npm publish; fi
43+
- sh: if [ ${APPVEYOR_REPO_TAG_NAME+x} ] && [ "${nodejs_version+x}" = "12" ]; then npm publish; fi
4444

4545
build: off
4646
version: "{build}"

0 commit comments

Comments
 (0)