Skip to content

Commit

Permalink
chore: use /usr/bin executable path
Browse files Browse the repository at this point in the history
  • Loading branch information
yanksyoon committed Jul 4, 2023
1 parent af792ca commit 4d9747b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,5 +635,5 @@ def _wget_install(self, executables: Iterable[WgetExecutable]) -> None:
for executable in executables:
executable_path = f"/usr/bin/{executable.cmd}"
logger.info("Downloading %s via wget to %s...", executable.url, executable_path)
self.instance.execute(["wget", executable.url, "-O", executable_path])
self.instance.execute(["chmod", "+x", executable_path])
self.instance.execute(["/usr/bin/wget", executable.url, "-O", executable_path])
self.instance.execute(["/usr/bin/chmod", "+x", executable_path])

0 comments on commit 4d9747b

Please sign in to comment.