Skip to content

Commit

Permalink
fixes release folder nesting
Browse files Browse the repository at this point in the history
  • Loading branch information
Snider committed Mar 9, 2023
1 parent ace8eaf commit 6cde990
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion utils/build/testnet_linux_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ chmod 0777 ./src/letheand src/simplewallet src/connectivity_tool
package_filename=${ARCHIVE_NAME_PREFIX}.tar.bz2

rm -f ./$package_filename
tar -cjvf $package_filename Lethean
cd Lethean
tar -cjvf ../$package_filename *
if [ $? -ne 0 ]; then
echo "Failed to pack"
exit 1
Expand Down
3 changes: 2 additions & 1 deletion utils/build/testnet_mac_osx_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ cp -Rv src/letheand src/simplewallet src/connectivity_tool ./Lethean
package_filename=${ARCHIVE_NAME_PREFIX}.tar.bz2

rm -f ./$package_filename
tar -cjvf $package_filename Lethean
cd Lethean
tar -cjvf ../$package_filename *
if [ $? -ne 0 ]; then
echo "Failed to pack"
exit 1
Expand Down

0 comments on commit 6cde990

Please sign in to comment.