chore: Fix build script (#90)

Fix build script
This commit is contained in:
Anatolios Laskaris 2023-04-18 16:42:51 +03:00 committed by GitHub
parent 97ce5bbac7
commit c85fb16de3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,9 +14,7 @@ SCRIPT_DIR="$(pwd)"
(
echo "*** create builtin distribution package ***"
cd ..
mv builtin-package trust-graph
tar --exclude="package.sh" -f trust-graph.tar.gz -zcv ./trust-graph
mv trust-graph builtin-package
tar --exclude="package.sh" -f trust-graph.tar.gz -zcv --transform 's|builtin-package|trust-graph|' builtin-package
)
echo "*** done ***"