Skip to content

Commit

Permalink
Fix stdin on oc_wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
bsquizz committed Mar 9, 2022
1 parent 0b04615 commit d741a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cicd/bin/oc_wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
args = sys.argv[1:]
try:
oc(*args, _silent=True, _print=True)
oc(*args, _silent=True, _print=True, _in=sys.stdin)
except ErrorReturnCode as err:
sys.exit(err.exit_code)

0 comments on commit d741a5b

Please sign in to comment.