Skip to content

Commit e8f31af

Browse files
rrnewtonedsko
authored andcommitted
minor: for someone who has just checked out the repo for the first time, an install script is helpful
1 parent eafcb3f commit e8f31af

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

install_all.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
if [ "$GHC" == "" ]; then
4+
GHC=ghc
5+
fi
6+
if [ "$CABAL" == "" ]; then
7+
CABAL=cabal
8+
fi
9+
10+
$CABAL install --with-ghc=$GHC ./network-transport ./network-transport-tcp ./network-transport-inmemory ./distributed-process ./distributed-process-simplelocalnet --reinstall $*
11+

0 commit comments

Comments
 (0)