Skip to content

Commit c3ef566

Browse files
committed
Fixed var name.
1 parent cc7fe66 commit c3ef566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ async function run(): Promise<void> {
5656
const emacsZip = await tc.downloadTool(zipPath);
5757
const emacsDir = await tc.extractZip(emacsZip, './');
5858

59-
// const emacsBin = "%PATH%;" + emacsDir + "bin";
59+
const emacsBin = emacsDir + "bin";
6060
// console.log("emacsBin: " + emacsBin);
61-
// core.exportVariable("PATH", emacsBin);
61+
// core.exportVariable("PATH", "%PATH%;" + emacsBin);
6262
core.addPath(emacsBin);
6363

6464
core.endGroup();

0 commit comments

Comments
 (0)