Env - Fixed vim test command

This commit is contained in:
Emmanuel BENOîT 2017-12-03 12:33:22 +01:00
parent 764048e423
commit da0d419fab

View file

@ -1,8 +1,8 @@
#!/bin/bash
if make -j 8; then
if [ -x /usr/bin/optirun ]; then
optirun ./tourista
optirun ./tourista test
else
./tourista
./tourista test
fi
fi