Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions poco/services/command_runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ class AbstractPlanRunner(object):

@staticmethod
def run_script_with_check(cmd, working_directory, envs):
envs['GID']=os.environ.get('GID', '')
envs['UID']=os.environ.get('UID', '')
res = check_call(" ".join(cmd), cwd=working_directory, env=envs, shell=True)
if res > 0:
ColorPrint.exit_after_print_messages(message=res)
Expand Down