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