mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-06 09:48:39 +00:00
10 lines
116 B
Bash
Executable File
10 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd `dirname $0`
|
|
|
|
if [ ! -f $HOME/.scummvmrc ] ; then
|
|
cp ./scummvmrc $HOME/.scummvmrc
|
|
fi
|
|
|
|
exec ./scummvm
|