11 lines
217 B
Bash
11 lines
217 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Right now the app has to be exported from the IDE.
|
||
|
#
|
||
|
|
||
|
mkdir -p releases
|
||
|
mkdir -p releases/linux
|
||
|
mkdir -p releases/windows
|
||
|
|
||
|
mv application.linux* releases/linux/
|
||
|
mv application.windows* releases/windows/
|