We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3681d8c commit cc7fe66Copy full SHA for cc7fe66
src/main.ts
@@ -53,13 +53,13 @@ async function run(): Promise<void> {
53
}
54
55
56
- console.log("zipPath: " + zipPath);
57
const emacsZip = await tc.downloadTool(zipPath);
58
const emacsDir = await tc.extractZip(emacsZip, './');
59
60
- const emacsBin = "%PATH%;" + emacsDir + "bin";
61
- console.log("emacsBin: " + emacsBin);
62
- core.exportVariable("PATH", emacsBin);
+ // const emacsBin = "%PATH%;" + emacsDir + "bin";
+ // console.log("emacsBin: " + emacsBin);
+ // core.exportVariable("PATH", emacsBin);
+ core.addPath(emacsBin);
63
64
core.endGroup();
65
0 commit comments