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 e540cfc commit 9cc3c99Copy full SHA for 9cc3c99
src/main.ts
@@ -55,12 +55,10 @@ async function run(): Promise<void> {
55
}
56
57
58
- console.log("__dirname: " + __dirname);
59
-
60
const emacsZip = await tc.downloadTool(zipPath);
61
const emacsDir = await tc.extractZip(emacsZip, __dirname);
62
63
- const emacsBin = __dirname + "\bin";
+ const emacsBin = __dirname + "\\bin";
64
console.log("emacsBin: " + emacsBin);
65
core.exportVariable("PATH", "%PATH%;" + emacsBin);
66
0 commit comments