Skip to content

Commit

Permalink
Trying to fix jobbergate install command
Browse files Browse the repository at this point in the history
  • Loading branch information
dusktreader committed May 3, 2024
1 parent 7c702dd commit 00d18d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions image_factory/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def democluster(
print("Kicking off packer build in LXD container.")
command = ["make", stage.value]
if jg_version := os.getenv("JG_VERSION"):
command = ["JG_VERSION={jg_version}"] + command
print("Using command {command}")
command = [f"JG_VERSION={jg_version}"] + command
print(f"Using command {command}")
lxc.exec(
command=command,
cwd="/srv/image-factory/democluster",
Expand Down

0 comments on commit 00d18d4

Please sign in to comment.