diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-10-09 15:05:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-09 15:05:03 -0700 |
| commit | 892b33996d527f430510793308cb9f0859d5041c (patch) | |
| tree | 0c2f0327ee53991290777e07031d7e2233f01e5d | |
| parent | 676560b05f945335ff9e091934f1aea3ff373ced (diff) | |
Travis: try to fix deployment script (#206)
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index a1baa2b14..7c167a45c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,11 +42,11 @@ matrix: script: make && make test before_deploy: | - export SLANG_OS_NAME=$(TRAVIS_OS_NAME) + export SLANG_OS_NAME=${TRAVIS_OS_NAME} export SLANG_ARCH_NAME=`uname -p` export SLANG_TAG=${TRAVIS_TAG#v} - export SLANG_BINARY_ARCHIVE=slang-$(SLANG_OS_NAME)-$(SLANG_ARCH_NAME)-$(SLANG_TAG).zip - zip -r $(SLANG_BINARY_ARCHIVE) bin/*/*/slangc bin/*/*/libslang.so bin/*/*/libslang-glslang.so docs/*.md README.md LICENSE slang.h + export SLANG_BINARY_ARCHIVE=slang-${SLANG_TAG}-${SLANG_OS_NAME}-${SLANG_ARCH_NAME}.zip + zip -r ${SLANG_BINARY_ARCHIVE} bin/*/*/slangc bin/*/*/libslang.so bin/*/*/libslang-glslang.so docs/*.md README.md LICENSE slang.h # We are going to deploy to GitHub Releases # on a successful build from a tag, but only |
