CreateZip.sh 214 B

12345678910
  1. #!/bin/bash
  2. ZIPDIR=../../tigcc-win32
  3. TIGCCCVSDIR=..
  4. rm -f "$ZIPDIR/tigcc.zip"
  5. zip -j -9 "$ZIPDIR/tigcc.zip" "$TIGCCCVSDIR/readme/Readme.txt" "$TIGCCCVSDIR/License.txt" "Setup.exe"
  6. rm -f Setup.exe
  7. echo Finished.