From 7c1ccbec6d9c72f695c99ba105d6eb6d5bb03841 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 19 Jul 2024 16:01:05 -0700 Subject: [PATCH] Debug log --- .github/workflows/release.yml | 5 ----- scripts/download-protoc.cjs | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a0010a3..ae770422 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,11 +73,6 @@ jobs: run: | npm ci - - name: Install Protoc for plugin-runtime - uses: arduino/setup-protoc@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - - name: Build plugins working-directory: ${{ env.YAAK_PLUGINS_DIR }} run: | diff --git a/scripts/download-protoc.cjs b/scripts/download-protoc.cjs index 4f963a29..b0868e2e 100644 --- a/scripts/download-protoc.cjs +++ b/scripts/download-protoc.cjs @@ -58,5 +58,5 @@ const SRC_BIN_MAP = { const includeDst = path.join(dstDir, 'include'); fs.cpSync(includeSrc, includeDst, {recursive: true}); - console.log("Downloaded protoc to", dstDir); + console.log("Downloaded protoc to", binDst); })().catch(err => console.log('Script failed:', err));