Skip to content

Commit 8c321e6

Browse files
Add debug print for PATH
1 parent 48d1ec8 commit 8c321e6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

dist/index.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ async function run() {
1010
const url = toolchainDownloadUrl(version, platform);
1111
core.debug(`Resolved toolchain download URL: ${url}`);
1212
const toolchainPath = await installToolchain(url, version, platform);
13+
core.info(`Toolchain installed at ${toolchainPath}`);
1314
core.addPath(`${toolchainPath}/usr/bin`);
1415
}
1516

1617
async function installToolchain(url, version, platform) {
1718
const cachePath = tc.find("swiftwasm", version, platform.arch);
1819
if (cachePath) {
19-
core.debug("Toolchain already installed.");
20+
core.info("Toolchain already installed.");
2021
return cachePath;
2122
}
2223
core.debug(`Downloading tool from ${url}`);

0 commit comments

Comments
 (0)