You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

make-exe.sh 229 B

2 years ago
12345678910111213
  1. #!/bin/bash
  2. path="./.build"
  3. # Windows Folder
  4. winPATH=$path"/builds/"$1"-win"
  5. mkdir $winPATH
  6. # Creating .exe
  7. cat $path"/love/love.exe" $path"/builds/"$1.love > $1.exe
  8. mv $1.exe $winPATH
  9. # Moving dll's
  10. cp $path"/win/"* $winPATH