10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-20 20:22:22 +02:00

Minor change

This commit is contained in:
Anthony Scemama 2015-01-12 19:24:05 +01:00
parent a9fb9ddf31
commit de8a8e7e9c

View File

@ -19,9 +19,9 @@ make -C ocaml Qptypes.ml &> /dev/null
if [[ $? -ne 0 ]]
then
if [[ -d ${HOME}/ocamlbrew ]]
if [[ -d ${OCAMLBREW_BASE} ]]
then
echo "Remove directory ${HOME}/ocamlbrew? [Y/n]"
echo "Remove directory ${OCAMLBREW_BASE} ? [Y/n]"
while read -r -n 1 -s answer; do
if [[ $answer = [YyNn] ]]; then
[[ $answer = [Yy] ]] && rm -rf -- ${HOME}/ocamlbrew
@ -29,7 +29,7 @@ then
break
fi
done
echo $answer
fi
scripts/fetch_from_web.py "https://raw.github.com/hcarty/ocamlbrew/master/ocamlbrew-install" ocamlbrew-install.sh
cat < ocamlbrew-install.sh | env OCAMLBREW_FLAGS="-r" bash | tee ocamlbrew_install.log