Emmanuel BENOîT
0fcfeb1fee
+ Tool has name! + Finished renaming files + Fixed common sync code that still had some SDL shit left
8 lines
112 B
Bash
Executable file
8 lines
112 B
Bash
Executable file
#!/bin/bash
|
|
if make -j 8; then
|
|
if [ -x /usr/bin/optirun ]; then
|
|
optirun ./tourista
|
|
else
|
|
./tourista
|
|
fi
|
|
fi
|