We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ef3182 commit dc077a1Copy full SHA for dc077a1
scripts/before_install.sh
@@ -17,4 +17,6 @@ elif which apt-get &>/dev/null; then
17
fi
18
19
# Make sure /tmp/myweb doesn't exist so that the test in AfterInstall is really valid
20
-[ -d /tmp/myweb ] && rm -Rf /tmp/myweb
+if [ -d /tmp/myweb ]; then
21
+ rm -Rf /tmp/myweb
22
+fi
0 commit comments