Skip to content

Commit

Permalink
preserve sfall global scripts, ref #59
Browse files Browse the repository at this point in the history
  • Loading branch information
burner1024 committed Jul 19, 2020
1 parent dfbf9c6 commit 78caf74
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion extra/publish/sfall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,17 @@ sfall_url="https://sourceforge.net/projects/sfall/files/sfall/sfall_$sfall_versi

cd "$release_dir"
wget -nv "$sfall_url" -O sfall.7z
7zr x sfall.7z
files="
ddraw.dll
ddraw.ini
sfall.dat
sfall-mods.ini
translations
"
for f in files; do
7zr x sfall.7z "$f"
done
7zr e sfall.7z data/scripts
rm -f sfall.7z

# uncomment ini settings to preserve options' placement in ddraw.ini
Expand Down
2 changes: 1 addition & 1 deletion release/rpu-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gl_npcarmor.int
gl_partycontrol.int
"
for f in $scripts; do
mv $f data/scripts/
mv "$f" data/scripts/
done

# old appearance mod in directories
Expand Down

0 comments on commit 78caf74

Please sign in to comment.