Skip to content

Commit

Permalink
Merge pull request #358 from pablochacin/fix-skuba-binpath-reference
Browse files Browse the repository at this point in the history
Fix skuba binpath reference
  • Loading branch information
hwoarang authored Jun 18, 2019
2 parents 8252ecd + e8f6138 commit 9591ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/infra/testrunner/skuba/skuba.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, conf):

def _verify_skuba_bin_dependency(self):
if not os.path.isfile(self.binpath):
raise FileNotFoundError(Format.alert("skuba not found at {}".format(skuba.binpath)))
raise FileNotFoundError(Format.alert("skuba not found at {}".format(self.binpath)))

def _verify_bootstrap_dependency(self):
if not os.path.exists(os.path.join(self.conf.workspace, "test-cluster")):
Expand Down

0 comments on commit 9591ec6

Please sign in to comment.