Skip to content

Commit

Permalink
fix: added stdio inherit
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-ra committed Jul 24, 2023
1 parent a9a3204 commit 98931aa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 5 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions src/handlers/deploy-helm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ export async function deployHelmChart(
})
}

execSync('kubectl get pods --kubeconfig=kubeconfig')
await wait()
execSync('kubectl get pods --kubeconfig=kubeconfig', {
stdio: 'inherit',
cwd: repositoryDirectory
})
}

0 comments on commit 98931aa

Please sign in to comment.