Merge pull request #1781 from jeid64/je_fix_execprovider
Set cwd to None if empty string for ExecProvider
This commit is contained in:
commit
be9a47e573
@ -53,7 +53,8 @@ class ExecProvider(object):
|
||||
value = item['value']
|
||||
additional_vars[name] = value
|
||||
self.env.update(additional_vars)
|
||||
self.cwd = cwd
|
||||
|
||||
self.cwd = cwd or None
|
||||
|
||||
def run(self, previous_response=None):
|
||||
kubernetes_exec_info = {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user