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 bb69e0f commit dff3b62Copy full SHA for dff3b62
src/main.ts
@@ -58,14 +58,11 @@ async function run(): Promise<void> {
58
const emacsZip = await tc.downloadTool(zipPath);
59
const emacsDir = await tc.extractZip(emacsZip, __dirname);
60
61
- await exec.exec("dir dist");
62
-
63
let emacsBin = emacsDir + "\\bin";
64
if (!fs.existsSync(emacsBin)) {
65
emacsBin = emacsDir + "\\" + emacs_dot_var + "\\bin";
66
}
67
68
- console.log("emacsBin: " + emacsBin);
69
const cachtedPath = await tc.cacheDir(emacsBin, "emacs", dot_ver);
70
core.addPath(cachtedPath);
71
core.exportVariable("PATH", "%PATH%;" + emacsBin);
0 commit comments