Skip to content

Commit

Permalink
Use keygenerator from the bindir (#5600)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Jeffery authored Sep 1, 2023
1 parent 1454542 commit a49343a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/infra/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def _setup_common_folder(self, constitution):
# It is more convenient to create a symlink in the common directory than generate
# certs and keys in the top directory and move them across
cmd = ["cp"] if IS_SNP else ["ln", "-s"]
cmd += [os.path.join(os.getcwd(), self.KEY_GEN), self.common_dir]
cmd += [self.key_generator, self.common_dir]
assert (
infra.proc.ccall(*cmd).returncode == 0
), f"Could not symlink {self.KEY_GEN} to {self.common_dir}"
Expand Down

0 comments on commit a49343a

Please sign in to comment.