We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d117a23 commit e3522e8Copy full SHA for e3522e8
script/build
@@ -41,9 +41,9 @@ do
41
42
printf "==> Tarballing %s\t%s\n" "$platform" "build/${output_name}.tar.gz" | expand -t 30
43
if [ $GOOS = "windows" ]; then
44
- tar -czf "build/${output_name}.tar.gz" "build/${output_name}.exe"
+ tar -czf "build/${output_name}.tar.gz" -C "build" "${output_name}.exe"
45
else
46
- tar -czf "build/${output_name}.tar.gz" "build/${output_name}"
+ tar -czf "build/${output_name}.tar.gz" -C "build" "${output_name}"
47
fi
48
49
if [ $? -ne 0 ]; then
0 commit comments