From f99e5c9b00d9dca13d8b4b74d4866857ed670c21 Mon Sep 17 00:00:00 2001 From: mollusk Date: Mon, 26 Nov 2018 21:19:54 -0700 Subject: [PATCH] remove check for julia; not a project concern --- install.sh | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/install.sh b/install.sh index 47856b9..7745e54 100755 --- a/install.sh +++ b/install.sh @@ -1,22 +1,21 @@ #!/bin/bash -INSTALLPATH="/usr/local/bin" +INSTALLPATH="/usr/bin" -which () - { - (alias; declare -f) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@ - } - export -f which +#which () +# { +# (alias; declare -f) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@ +# } +# export -f which -which julia &> /dev/null - -if [ $? != 0 ];then - echo -e -n "\nJulia is not installed, proceed?(Y/n): " - read confirm - - if [ "${confirm}" = "n" ];then - exit 0; - fi -fi +#which julia #&> /dev/null +#if [ "$?" = 1 ];then +# echo -e -n "\nJulia is not installed, proceed?(Y/n): " +# read confirm +# +# if [ "${confirm}" = "n" ];then +# exit 0; +# fi +#fi