Commit 071c56e5 authored by Andrew Gibiansky's avatar Andrew Gibiansky

build.sh has option 'all' now

parent 5f371ed1
...@@ -21,12 +21,16 @@ cabal install --force-reinstalls ...@@ -21,12 +21,16 @@ cabal install --force-reinstalls
# Remove my profile # Remove my profile
rm -rf ~/.ipython/profile_haskell rm -rf ~/.ipython/profile_haskell
# Install all the display libraries if [ $# -gt 0 ]; then
cd ihaskell-display if [ $1 = "all" ]; then
for dir in `ls` # Install all the display libraries
do cd ihaskell-display
cd $dir for dir in `ls`
cabal clean do
cabal install cd $dir
cd .. cabal clean
done cabal install
cd ..
done
fi
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment