mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-19 12:56:08 +00:00
Only print the cabal commands from build.sh
This commit is contained in:
parent
8379d79d0f
commit
d7f77baccb
3
build.sh
3
build.sh
@ -1,6 +1,5 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
set -x
|
||||
|
||||
function print_help {
|
||||
echo "Run build.sh from inside the IHaskell directory to install packages in this repository:"
|
||||
@ -70,7 +69,9 @@ done
|
||||
INSTALL_DIRS=`echo $INSTALLS | tr ' ' '\n' | sed 's#^#./#' | tr ' ' '\n'`
|
||||
|
||||
if [ `uname` = Darwin ]; then
|
||||
echo CMD: cabal install --constraint "arithmoi -llvm" -j $INSTALL_DIRS --force-reinstalls
|
||||
cabal install --constraint "arithmoi -llvm" -j $INSTALL_DIRS --force-reinstalls
|
||||
else
|
||||
echo CMD: cabal install -j $INSTALL_DIRS --force-reinstalls --constraint "arithmoi==0.4.*"
|
||||
cabal install -j $INSTALL_DIRS --force-reinstalls --constraint "arithmoi==0.4.*"
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user