fix shell equality
This commit is contained in:
parent
7ae7d274fc
commit
8c30ebe3c0
@ -30,7 +30,7 @@ for pkg in "${pkgs[@]}"; do
|
|||||||
(
|
(
|
||||||
cd "./$pkg"
|
cd "./$pkg"
|
||||||
|
|
||||||
if [ $1 == "--clean" ]; then
|
if [ "$1" = "--clean" ]; then
|
||||||
$CABAL clean
|
$CABAL clean
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ for pkg in "${pkgs[@]}"; do
|
|||||||
$CABAL test
|
$CABAL test
|
||||||
|
|
||||||
$CABAL check
|
$CABAL check
|
||||||
if [ $1 != "--fast" ]; then
|
if [ "$1" != "--fast" ]; then
|
||||||
$CABAL haddock --executables
|
$CABAL haddock --executables
|
||||||
fi
|
fi
|
||||||
./Setup.lhs install
|
./Setup.lhs install
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user