From 779da6c99259e9e33f6efb099e3f04562fc56d21 Mon Sep 17 00:00:00 2001 From: Samkist Date: Mon, 6 Jun 2022 13:10:45 -0400 Subject: [PATCH] debug test --- .github/workflows/ci.yml | 5 ----- scripts/compiler.lua | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a26c91d..c357755 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,6 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - name: Restore vcpkg cache - uses: lukka/run-vcpkg@v10 - with: - vcpkgGitCommitId: 314018fef43c7e3a52a3e46599313b70ace3977a - - name: start-message run: echo Starting compilation diff --git a/scripts/compiler.lua b/scripts/compiler.lua index b06e349..4b3d5c5 100644 --- a/scripts/compiler.lua +++ b/scripts/compiler.lua @@ -37,6 +37,7 @@ if not dirExists(buildPath) then end print(string.format("Writing to %s/%s%s", lfs.currentdir(), buildPath, sourceFileName)) +os.execute("echo ".. string.format("Writing to %s/%s%s", lfs.currentdir(), buildPath, sourceFileName)) local sourceFile = io.open(buildPath .. sourceFileName, "w") sourceFile:write(compiledSource)