diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 948b67f9..dbb50cbd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,29 +82,4 @@ jobs: - uses: actions/upload-artifact@v2 with: name: coverage - path: coverage - - web: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: setup emsdk - uses: mymindstorm/setup-emsdk@v9 - with: - version: 1.38.40 - actions-cache-folder: 'emsdk-cache' - - name: verify emsdk - run: | - emcc -v # verify emscripten installed successfully - - name: cmake configure - run: | - emcmake cmake . - - name: build - run: | - cmake --build . --target Luau.Repl.CLI --config Debug # as seen above but only Repl.CLI. - - name: upload-artifacts - - uses: actions/upload-artifact@v2 - with: - name: luau-web-artifacts - path: docs/assets/luau/ - if-no-files-found: error \ No newline at end of file + path: coverage \ No newline at end of file diff --git a/CLI/Repl.cpp b/CLI/Repl.cpp index 1414ffde..f1f16f86 100644 --- a/CLI/Repl.cpp +++ b/CLI/Repl.cpp @@ -185,7 +185,7 @@ static std::string runCode(lua_State* L, const std::string& source) else { std::string error; - + if (status == LUA_YIELD) { error = "thread yielded unexpectedly"; @@ -565,4 +565,3 @@ int main(int argc, char** argv) } } #endif -