From a2a5ffd71635f01baa5ab49fa5d24dbe5919c808 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Fri, 25 Mar 2022 11:07:56 -0500 Subject: [PATCH] fixed github build --- .github/workflows/onyx-build.yml | 2 -- src/wasm_emit.c | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/onyx-build.yml b/.github/workflows/onyx-build.yml index 657cf54c..336bc14f 100644 --- a/.github/workflows/onyx-build.yml +++ b/.github/workflows/onyx-build.yml @@ -15,8 +15,6 @@ jobs: - uses: actions/checkout@v2 - name: make build.sh executable run: chmod +x build.sh - - name: make runtime build.sh executable - run: chmod +x modules/onyx_runtime/build.sh - name: make build directory run: mkdir -p build - name: build onyx diff --git a/src/wasm_emit.c b/src/wasm_emit.c index 38f88518..5b076fb4 100644 --- a/src/wasm_emit.c +++ b/src/wasm_emit.c @@ -2912,7 +2912,7 @@ EMIT_FUNC(expression, AstTyped* expr) { case Ast_Kind_Code_Block: { // Like above, this error message should be moved to checking, but // this is the best place to do it right now. - onyx_report_error(expr->token->pos, Error_Critical, "'#code' blocks are only to be used at compile-time. Using them as a runtime value is not allowed."); + onyx_report_error(expr->token->pos, Error_Critical, "'#quote' blocks are only to be used at compile-time. Using them as a runtime value is not allowed."); break; } -- 2.25.1