Skip to content

Commit

Permalink
rfct
Browse files Browse the repository at this point in the history
  • Loading branch information
xonixx committed Dec 8, 2023
1 parent aa4a32e commit 7f8736a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makesurefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -70,7 +70,7 @@

export NEXT_VERSION

if ./soft/fhtagn.awk "$f"
if "$FHTAGN" "$f"
then
echo "TESTS PASSED : $f"
else
Expand All @@ -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
Expand Down

0 comments on commit 7f8736a

Please sign in to comment.