From 4cb1913d2bc00f4ad1985a766abe8ea5302bbaa4 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 16 May 2025 13:40:29 -1000 Subject: [PATCH] ;tools: just hackageupload: fix cabal files check --- tools/hackageupload | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/hackageupload b/tools/hackageupload index 497bc0270..63b7bdfad 100755 --- a/tools/hackageupload +++ b/tools/hackageupload @@ -12,7 +12,7 @@ if [[ $BRANCH =~ ^[0-9.]*-(branch|release) ]]; then read -rp "Ok ? Press enter to confirm, ctrl-c to abort: " # last chance check (would cabal upload ) for P in $PACKAGES; do - cabal check + (cd "$P"; cabal check) done for P in $PACKAGES; do stack upload "$P"