Skip to content

Commit 07a29d9

Browse files
author
github-actions
committed
Update dist
1 parent e059c80 commit 07a29d9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dist/index.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28850,7 +28850,12 @@ function run() {
2885028850
yield exec.exec('emacs', ['--version']);
2885128851
}
2885228852
catch (error) {
28853-
core.setFailed(error.message);
28853+
if (error instanceof Error) {
28854+
core.setFailed(error.message);
28855+
}
28856+
else {
28857+
core.setFailed(String(error));
28858+
}
2885428859
}
2885528860
});
2885628861
}

0 commit comments

Comments
 (0)