mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-16 11:26:08 +00:00
17 lines
261 B
Bash
Executable File
17 lines
261 B
Bash
Executable File
#!/bin/sh
|
|
cd profile
|
|
rm profile.tar
|
|
tar -cvf profile.tar *
|
|
cd ..
|
|
cabal install --force-reinstalls || return 1
|
|
cd ihaskell-display
|
|
for dir in `ls`
|
|
do
|
|
cd $dir
|
|
cabal install || return 1
|
|
cd ..
|
|
done
|
|
|
|
# Remove my profile
|
|
rm -rf ~/.ipython/profile_haskell
|