From 0f9ef1a9c4625e4f625e3d31f315dec8dc57b8f0 Mon Sep 17 00:00:00 2001 From: Ragnis Armus Date: Sun, 17 Jun 2012 23:42:26 +0300 Subject: [PATCH] Create the tarball inside package directory --- prototype/linux/package.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prototype/linux/package.sh b/prototype/linux/package.sh index d1cac8d6..885d01ba 100755 --- a/prototype/linux/package.sh +++ b/prototype/linux/package.sh @@ -12,7 +12,8 @@ package () cp -r ../tests/ ./package/ #cp -r ./tutorial/ ./package/ - tar -czf axr_${VERSION}_linux_$2.tar.gz ./package/* + cd ./package/ + tar -czf axr_${VERSION}_linux_$2.tar.gz ./* rm -rf ./package/ }