From 7f8736ac6c0ebaaf9133a50b0c2c1f8ed022e06a Mon Sep 17 00:00:00 2001 From: xonix Date: Fri, 8 Dec 2023 02:32:49 +0200 Subject: [PATCH] rfct --- Makesurefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makesurefile b/Makesurefile index 700dbcb..69ad34c 100644 --- a/Makesurefile +++ b/Makesurefile @@ -15,7 +15,7 @@ @reached_if [[ -d "soft" ]] mkdir soft -@define FHTAGN "soft/fhtagn.awk" +@define FHTAGN "./soft/fhtagn.awk" @goal fhtagn_installed @private @depends_on soft_folder_created @@ -70,7 +70,7 @@ export NEXT_VERSION - if ./soft/fhtagn.awk "$f" + if "$FHTAGN" "$f" then echo "TESTS PASSED : $f" else @@ -86,7 +86,7 @@ @goal fhtagn @doc 'runs all *.tush tests (fail at end)' @depends_on prepared4tests - MAKESURE=makesure_dev ALL=1 ./soft/fhtagn.awk tests/*.tush + MAKESURE=makesure_dev ALL=1 "$FHTAGN" tests/*.tush @goal @glob 'tests/*.tush' @private @depends_on prepared4tests