Skip to content

Commit b1b94bf

Browse files
committed
Add script for generating a release .zip file
1 parent ea29c83 commit b1b94bf

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

release.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
if [[ $# != 1 ]]; then
3+
echo Usage: $0 VERSION
4+
echo Example: $0 0.2
5+
exit 1
6+
fi
7+
VERSION=$1
8+
9+
zip -r vgaonoff-v$VERSION.zip VGAONOFF.COM COPYING README.md example/ vgaonoff.asm build.bat

0 commit comments

Comments
 (0)