Skip to content

Commit

Permalink
[CI] fix wrong usage of subprocess.check_call() (#1392)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jianhui Harold authored Mar 13, 2020
1 parent ea2c98d commit f9e8dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/verify_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, extension_name):
@staticmethod
def _cmd(cmd):
print(cmd)
check_call(cmd.split(), shell=True)
check_call(cmd, shell=True)

def add_from_url(self, url):
self._cmd('az extension add -s {} -y'.format(url))
Expand Down

0 comments on commit f9e8dc9

Please sign in to comment.