mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-03 23:52:41 +00:00
10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd `dirname $0`
|
|
|
|
if [ ! -f $HOME/.scummvmrc ] ; then
|
|
cp ./scummvmrc $HOME/.scummvmrc
|
|
fi
|
|
|
|
exec ./scummvm 2>&1 >/var/tmp/scummvm.log
|