summaryrefslogtreecommitdiffstats
path: root/games/marsnomercy/files/mars-nomercy.in
blob: 77318dc2d4533779d897a047e37095814c307b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ -d "~/.marsnomercy" ]; then
        cd ~/.marsomercy || exit 1
        exec %%PREFIX%%/libexec/mars "$@"
else
        cd %%DATADIR%% || exit 1
        find * -type d -exec mkdir -p ~/.marsnomercy/data/{} \; || exit 1
        find * -type f -exec ln -s %%DATADIR%%/{} ~/.marsnomercy/data/{} \; 2>/dev/null || exit 1
        cd ~/.marsnomercy || exit 1
        exec %%PREFIX%%/libexec/mars "$@"
fi
OpenPOWER on IntegriCloud