Skip to content

Commit 008c3fd

Browse files
committed
Remove incorrect CWD setting
1 parent 3378900 commit 008c3fd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bin/local-action

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function entrypoint() {
5959
}
6060

6161
// Run the command.
62-
execSync(command, { cwd: packagePath, stdio: 'inherit' })
62+
execSync(command, { stdio: 'inherit' })
6363
} catch (error) {
6464
process.exit(error.status)
6565
} finally {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@github/local-action",
33
"description": "Local Debugging for GitHub Actions",
4-
"version": "1.5.0",
4+
"version": "1.5.1",
55
"author": "Nick Alteen <[email protected]>",
66
"private": false,
77
"homepage": "https://github.com/github/local-action",

0 commit comments

Comments
 (0)