Skip to content

Commit

Permalink
Fix package generation for 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mlespiau committed May 3, 2017
1 parent d806ea0 commit 0adbaa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/package-code.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -ev

if [ "${TRAVIS_TAG}" != "false" ]; then
echo $TRAVIS_TAG
if [ "${TRAVIS_TAG}" != "" ]; then
tar -czf /tmp/opencats-$TRAVIS_TAG-full.tar.gz --exclude=INSTALL_BLOCK -C $TRAVIS_BUILD_DIR .
zip -q -x INSTALL_BLOCK -r /tmp/opencats-$TRAVIS_TAG-full.zip $TRAVIS_BUILD_DIR
cp /tmp/opencats-$TRAVIS_TAG-full.tar.gz $TRAVIS_BUILD_DIR
Expand Down

0 comments on commit 0adbaa2

Please sign in to comment.