From d1933f6079eef0a92255f0d291c08b63ce258998 Mon Sep 17 00:00:00 2001 From: Luke Lau Date: Tue, 5 Nov 2019 22:56:55 +0000 Subject: [PATCH] Don't use wrong condition for hie test --- .github/workflows/haskell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index adc6228..fc7dc41 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -38,7 +38,7 @@ jobs: - name: Build HIE run: | - if [ ! -f $HOME/.cabal/bin/hie ]; then + if [ -e $HOME/.cabal/bin/hie ]; then echo "hie is already built" exit 0 fi -- 2.30.2