From 77324e4723c0931364a6db46127cb7397c605b0b Mon Sep 17 00:00:00 2001 From: TeamSPoon Date: Thu, 15 Aug 2024 03:21:55 -0700 Subject: [PATCH 1/2] FIX: https://github.com/trueagi-io/metta-wam/issues/30 Allow exiting of interp on Ctrl-D. To get to the prolog prompt you can still type --- src/canary/metta_interp.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/canary/metta_interp.pl b/src/canary/metta_interp.pl index c032736ed3b..20c007a66d6 100755 --- a/src/canary/metta_interp.pl +++ b/src/canary/metta_interp.pl @@ -1678,7 +1678,7 @@ maybe_halt(Seven):- option_value('halt',true),!,halt(Seven). maybe_halt(_):- once(pre_halt2), fail. maybe_halt(Seven):- fbugio(maybe_halt(Seven)), fail. -maybe_halt(_):- !. +%maybe_halt(_):- !. maybe_halt(H):- halt(H). From 03e8c39630d4a93d9b1d7b8ed198e4d8edcc5414 Mon Sep 17 00:00:00 2001 From: "Douglas R. Miles" Date: Thu, 15 Aug 2024 03:39:34 -0700 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a445445cdc8..1fb560d549c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: - name: Convert JUnit XML to Matrix HTML Report continue-on-error: true run: | - junit2html --report-matrix junit.xml junit-matrix-report.html + junit2html --report-matrix junit-matrix-report.html junit.xml - name: Upload JUnit XML Report continue-on-error: true