fixed github build
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Fri, 25 Mar 2022 16:07:56 +0000 (11:07 -0500)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Fri, 25 Mar 2022 16:07:56 +0000 (11:07 -0500)
.github/workflows/onyx-build.yml
src/wasm_emit.c

index 657cf54c0e79120feb24896b618fb6b9c3c6ea7b..336bc14f82ac93c1e157dbfceb172a0c378f4235 100644 (file)
@@ -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
index 38f88518adf5dd81086d741f3726484258378c4a..5b076fb4615c2c4ac3985a7b50fe6f497e9effe3 100644 (file)
@@ -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;
         }