1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

install handles null response as no, rather than getting an error

This commit is contained in:
Daniel Jackoway 2009-02-14 16:40:35 -05:00
parent c8c79a8645
commit a7891fdd41

View File

@ -9,12 +9,15 @@ if [ -d "/etc/profile.d" ]; then
else else
echo "Your distribution does not have a /etc/profile.d directory, the default that we install one of the scripts to. Would you like us to copy it into your ~/.bashrc file to make it work? (If you have done this once before, delete the old version before doing it again.) [y/n]" echo "Your distribution does not have a /etc/profile.d directory, the default that we install one of the scripts to. Would you like us to copy it into your ~/.bashrc file to make it work? (If you have done this once before, delete the old version before doing it again.) [y/n]"
read ans read ans
if [ $ans = "y" -o $ans = "Y" -o $ans = "yes" -o $ans = "Yes" ]; then if [ ${#ans} -gt 0 ]; then
echo "" >> ~/.bashrc if [ $ans = "y" -o $ans = "Y" -o $ans = "yes" -o $ans = "Yes" ]; then
echo "#autojump" >> ~/.bashrc echo "" >> ~/.bashrc
cat autojump.sh >> ~/.bashrc echo "#autojump" >> ~/.bashrc
cat autojump.sh >> ~/.bashrc
else
echo "Then you need to put autojump.sh, or the code from it, somewhere where it will get read. Good luck!"
fi
else else
echo "Then you need to put autojump.sh, or the code from it, somewhere where it will get read. Good luck!" echo "Then you need to put autojump.sh, or the code from it, somewhere where it will get read. Good luck!"
fi fi
fi fi