Skip to content

Commit 260f61c

Browse files
committed
Fix zip file generation
1 parent b89048b commit 260f61c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ for platform in "${platforms[@]}"
1111
do
1212
archive=react-stdio-$tag-$platform
1313

14-
echo "Creating build/$archive..."
14+
echo "Creating $archive build..."
1515

1616
pkg bin/react-stdio -t $platform -o build/$archive/react-stdio
1717
echo "$tag" > build/$archive/version
1818

1919
cd build
20-
zip -q -r $archive $archive
20+
zip -q -r $archive.zip $archive
2121
cd - > /dev/null
2222
done

0 commit comments

Comments
 (0)