aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOmer Kilic <[email protected]>2014-11-07 18:49:03 +0000
committerOmer Kilic <[email protected]>2014-11-07 18:49:03 +0000
commite3d6596c981bb5b2d640ce3d07985251ad9752c7 (patch)
treebff2f665664b827bb35a72f91cb8991f4059496e
parenteb42d883c28c09c8c18ac2834ed58596771452cc (diff)
downloadkerl-e3d6596c981bb5b2d640ce3d07985251ad9752c7.tar.gz
kerl-e3d6596c981bb5b2d640ce3d07985251ad9752c7.tar.bz2
kerl-e3d6596c981bb5b2d640ce3d07985251ad9752c7.zip
refuse installation in $HOME.
-rwxr-xr-xkerl16
1 files changed, 13 insertions, 3 deletions
diff --git a/kerl b/kerl
index 1a01a28..d65439c 100755
--- a/kerl
+++ b/kerl
@@ -725,12 +725,22 @@ case "$1" in
exit 1
fi
if [ $# -eq 3 ]; then
- do_install $2 "$3"
+ if [ "$3" = "$HOME" ]; then
+ echo "Refusing to install in $HOME, this is a bad idea."
+ exit 1
+ else
+ do_install $2 "$3"
+ fi
else
if [ -z "$KERL_DEFAULT_INSTALL_DIR" ]; then
- do_install $2 .
+ if [ "$PWD" = "$HOME" ]; then
+ echo "Refusing to install in $HOME, this is a bad idea."
+ exit 1
+ else
+ do_install $2 .
+ fi
else
- do_install $2 "$KERL_DEFAULT_INSTALL_DIR/$2"
+ do_install $2 "$KERL_DEFAULT_INSTALL_DIR/$2"
fi
fi
;;