mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
8 lines
237 B
Bash
8 lines
237 B
Bash
|
# Don't clobber an existing /var/games/phalanx/learn.phalanx
|
||
|
if [ ! -r var/games/phalanx/learn.phalanx ]; then
|
||
|
mv var/games/phalanx/learn.phalanx.new var/games/phalanx/learn.phalanx
|
||
|
else
|
||
|
rm -f var/games/phalanx/learn.phalanx.new
|
||
|
fi
|
||
|
|