2021-11-30 19:30:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Right now the app has to be exported from the IDE.
|
|
|
|
#
|
|
|
|
|
|
|
|
mkdir -p releases
|
|
|
|
mkdir -p releases/linux
|
|
|
|
mkdir -p releases/windows
|
2021-11-30 19:47:57 +00:00
|
|
|
mkdir -p releases/mac
|
2021-11-30 19:30:56 +00:00
|
|
|
|
|
|
|
mv application.linux* releases/linux/
|
2021-11-30 19:47:57 +00:00
|
|
|
mv application.windows* releases/windows/
|
|
|
|
mv application.macosx releases/mac/
|