Skip to content

Commit 796b5f3

Browse files
committed
Should use export var.
1 parent c3ef566 commit 796b5f3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main.ts

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

5959
const emacsBin = emacsDir + "bin";
60-
// console.log("emacsBin: " + emacsBin);
61-
// core.exportVariable("PATH", "%PATH%;" + emacsBin);
62-
core.addPath(emacsBin);
60+
core.exportVariable("PATH", "%PATH%;" + emacsBin);
61+
//core.addPath(emacsBin);
6362

6463
core.endGroup();
6564

0 commit comments

Comments
 (0)