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)