mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-19 12:56:08 +00:00
return status code 0, even "ihaskell install" failed
This commit is contained in:
parent
252fe06865
commit
bf6913dd48
7
abc.sh
Executable file
7
abc.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#/bin/bash sh
|
||||
|
||||
if hash ihaskell 2>/dev/null; then
|
||||
ihaskell install 2>/dev/null || echo "\"ihaskell install\" - failed, required ipython --version == 3.0.0 is $(ipython --version)"
|
||||
else
|
||||
echo "tip, don't forget run: ihaskell install"
|
||||
fi
|
6
build.sh
6
build.sh
@ -76,4 +76,8 @@ else
|
||||
cabal install -j $INSTALL_DIRS --force-reinstalls --constraint "arithmoi==0.4.*" --max-backjumps=-1 --reorder-goals
|
||||
fi
|
||||
|
||||
if hash ihaskell 2>/dev/null; then ihaskell install; else echo "tip, don't forget run: ihaskell install"; fi
|
||||
if hash ihaskell 2>/dev/null; then
|
||||
ihaskell install 2>/dev/null || echo "\"ihaskell install\" - failed, pls check your ipython --version required 3.0.0 but is $(ipython --version)"
|
||||
else
|
||||
echo "tip, don't forget run: ihaskell install"
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user