2017-09-30 10:26:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
if make -j 8; then
|
2017-11-22 20:35:05 +01:00
|
|
|
if [ -x /usr/bin/optirun ]; then
|
2017-12-03 12:33:22 +01:00
|
|
|
optirun ./tourista test
|
2017-11-22 20:35:05 +01:00
|
|
|
else
|
2017-12-03 12:33:22 +01:00
|
|
|
./tourista test
|
2017-11-22 20:35:05 +01:00
|
|
|
fi
|
2017-09-30 10:26:30 +02:00
|
|
|
fi
|