Merge pull request #376 from klightspeed/1.5-dev#fix-74fe4c9-staging

Fix typo in staging directory based file removal
This commit is contained in:
Fez Vrasta 2016-01-29 14:22:36 +01:00
commit 4c0762643b

View File

@ -1068,7 +1068,7 @@ doUpdate() {
find Engine ShooterGame linux64 -depth -print |
grep -v '^ShooterGame/\(Saved\|Content/Mods\)' |
while read f; do
if [ ! -e "staging/${f}" ]; then
if [ ! -e "${arkStagingDir}/${f}" ]; then
if [ -f "$f" ]; then
rm "${f}"
else