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 d82f4d3 commit ac2b74dCopy full SHA for ac2b74d
src/main.ts
@@ -1,10 +1,10 @@
1
import { info, setFailed, getInput, warning } from '@actions/core'
2
-import { join as path } from 'path'
3
import { execFile } from 'child_process'
+import { resolve } from 'path'
4
5
try {
6
checkInputs()
7
- const child = execFile(path(__dirname, 'entrypoint.sh'))
+ const child = execFile(resolve(__dirname, 'entrypoint.sh'))
8
child.stdout?.pipe(process.stdout)
9
child.stderr?.pipe(process.stderr)
10
} catch (err) {
0 commit comments