aboutsummaryrefslogtreecommitdiffstats
path: root/dist/travis-ci.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dist/travis-ci.sh')
-rwxr-xr-xdist/travis-ci.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/dist/travis-ci.sh b/dist/travis-ci.sh
index cf7e81916..56b4b1972 100755
--- a/dist/travis-ci.sh
+++ b/dist/travis-ci.sh
@@ -40,7 +40,9 @@ if [ "$TRAVIS_TAG" = "x" ]; then
else
PKG_TAG=$TRAVIS_TAG
fi
-tar -zcvf ghdl-$PKG_VER-$BLD-$PKG_TAG.tgz -C $prefix .
+PKG_FILE=ghdl-$PKG_VER-$BLD-$PKG_TAG.tgz
+echo "creating $PKG_FILE"
+tar -zcvf $PKG_FILE -C $prefix .
# Test
export GHDL="$CDIR/install-$1/bin/ghdl"