blob: 5a1a64496438e6ae508e592333b044082327dd4e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
if [[ "$1" == "linux" ]]; then
cp os/linux/Makefile ./
elif [[ "$1" == "windows" ]]; then
cp os/windows/Makefile ./
else
echo "Error! Please use an os in the os folder"
exit 1
fi
mkdir package
exit 0
|