diff options
Diffstat (limited to 'scenarios/fragments/flavor.py')
-rw-r--r-- | scenarios/fragments/flavor.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scenarios/fragments/flavor.py b/scenarios/fragments/flavor.py index 68c1f55..eeb8345 100644 --- a/scenarios/fragments/flavor.py +++ b/scenarios/fragments/flavor.py @@ -30,6 +30,6 @@ def download(): if exists(desc['path']): continue shared.exec(f"mkdir -p {shared.binary_path}") - shared.exec(f"wget https://garagehq.deuxfleurs.fr/_releases/{version['version']}/{version['target']}/garage -O {p}") - shared.exec(f"chmod +x {p}") - shared.exec(f"{p} --version") + shared.exec(f"wget https://garagehq.deuxfleurs.fr/_releases/{desc['version']}/{desc['target']}/garage -O {desc['path']}") + shared.exec(f"chmod +x {desc['path']}") + shared.exec(f"{desc['path']} --version") |