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 cc7fe66 commit c3ef566Copy full SHA for c3ef566
src/main.ts
@@ -56,9 +56,9 @@ async function run(): Promise<void> {
56
const emacsZip = await tc.downloadTool(zipPath);
57
const emacsDir = await tc.extractZip(emacsZip, './');
58
59
- // const emacsBin = "%PATH%;" + emacsDir + "bin";
+ const emacsBin = emacsDir + "bin";
60
// console.log("emacsBin: " + emacsBin);
61
- // core.exportVariable("PATH", emacsBin);
+ // core.exportVariable("PATH", "%PATH%;" + emacsBin);
62
core.addPath(emacsBin);
63
64
core.endGroup();
0 commit comments