diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-10-22 14:50:42 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-10-22 14:50:42 -0700 |
commit | 901c68a65fc2e7389927cf8138a08369b2821978 (patch) | |
tree | 25f7c2b3f7325bac9209865d9463d2c79362e1f8 /linux | |
parent | e720a44f68dd34a6e48bbd5358cae23eaa72a894 (diff) | |
download | pandoc-901c68a65fc2e7389927cf8138a08369b2821978.tar.gz |
make_linux.sh tarball creation fix directory structure.
Diffstat (limited to 'linux')
-rw-r--r-- | linux/make_linux.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux/make_linux.sh b/linux/make_linux.sh index 90e84d06a..c86e5f8b2 100644 --- a/linux/make_linux.sh +++ b/linux/make_linux.sh @@ -75,5 +75,6 @@ strip $TARGET/bin/pandoc strip $TARGET/bin/pandoc-citeproc gzip -9 $TARGET/share/man/man1/pandoc.1 gzip -9 $TARGET/share/man/man1/pandoc-citeproc.1 -tar cvzf $TARGET.tar.gz $TARGET +cd $ARTIFACTS +tar cvzf pandoc-$VERSION.tar.gz pandoc-$VERSION rm -r $TARGET |