diff options
Diffstat (limited to 'games-action/openclonk/files/openclonk-wrapper-script.sh')
-rw-r--r-- | games-action/openclonk/files/openclonk-wrapper-script.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/games-action/openclonk/files/openclonk-wrapper-script.sh b/games-action/openclonk/files/openclonk-wrapper-script.sh new file mode 100644 index 000000000..9f7e64442 --- /dev/null +++ b/games-action/openclonk/files/openclonk-wrapper-script.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# wrapper prevents the game to look for .ocp files in the current dir +# which can lead to weird behavior and game freeze + +[ -d ~/.clonk/openclonk ] || mkdir -p ~/.clonk/openclonk + +cd ~/.clonk/openclonk + +exec clonk "$@" |