11 lines
133 B
Bash
Executable file
11 lines
133 B
Bash
Executable file
#!/bin/sh
|
|
cd ..
|
|
|
|
make distclean
|
|
qmake Jamulus.pro
|
|
make
|
|
make dist
|
|
|
|
mkdir -p deploy
|
|
mv *.tar.gz deploy/Jamulus-version.tar.gz
|
|
cd linux
|