aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Howard <gavin@yzena.com>2021-08-08 22:07:43 -0600
committerGavin Howard <gavin@yzena.com>2021-08-08 22:07:43 -0600
commit433e8d533e4d3038ce61ed0912d069be200cbb06 (patch)
tree593e5d20656b0c973352faaff661bcb18a606b07
parent3635261ef91fc4c76eb6157af064cda02cd38c44 (diff)
downloadbc-433e8d533e4d3038ce61ed0912d069be200cbb06.tar.gz
Fix a type in scripts/package.sh
Signed-off-by: Gavin Howard <gavin@yzena.com>
-rwxr-xr-xscripts/package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package.sh b/scripts/package.sh
index 7a26a619..69dd7cd8 100755
--- a/scripts/package.sh
+++ b/scripts/package.sh
@@ -84,7 +84,7 @@ proj="bc"
cd "$repo"
-if [ ! -f "../Debug.zig" ] || [ ! -f "../Release.zip" ]; then
+if [ ! -f "../Debug.zip" ] || [ ! -f "../Release.zip" ]; then
printf 'Must have Windows builds!\n'
exit 1
fi