blob: f6c2bdf7727050378e5b4d6aa17ea380eb0cc183 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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 (not debian)"
exit 1
fi
mkdir package
mkdir os/debian/deb/usr
mkdir os/debian/deb/usr/bin
exit 0
|