Windows version needs space to save incremental map previews

This commit is contained in:
grepwood@sucs.org 2020-04-19 13:29:29 +02:00
parent 87c34675a4
commit 974defdd01
1 changed files with 7 additions and 1 deletions

View File

@ -13,10 +13,16 @@ if [ ! -d ~/.local/share/Fallout1 ]; then
cp /usr/share/games/fallout1/fallout.cfg .
mkdir DATA
pushd DATA
for i in $(ls /usr/share/games/fallout1/DATA | grep -v ^SAVEGAME$); do
for i in $(ls /usr/share/games/fallout1/DATA | grep -vE '^SAVEGAME$|^MAPS$'); do
ln -s /usr/share/games/fallout1/DATA/$i $i
done
mkdir SAVEGAME
mkdir MAPS
pushd MAPS
for i in $(ls /usr/share/games/fallout1/DATA/MAPS); do
ln -s /usr/share/games/fallout1/DATA/MAPS/$i $i
done
popd
popd
popd
fi