Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dloez committed Feb 11, 2024
1 parent e463894 commit 1ffc4bb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions action/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,7 @@ async function getActionRef(): Promise<string> {
}

async function linuxMacInstall(actionRef: string) {
const rootActionDir = path.dirname(__dirname)
console.log(rootActionDir)
const {stdout} = await exec.getExecOutput('ls', ['-la'], {
cwd: rootActionDir
})
const rootActionDir = path.dirname(path.dirname(__dirname))
const {exitCode, stderr} = await exec.getExecOutput(
'sh',
['install.sh', actionRef],
Expand Down

0 comments on commit 1ffc4bb

Please sign in to comment.