Skip to content

Commit

Permalink
pipeline: download-debs: de-hardcode path to compile.sh for downloader
Browse files Browse the repository at this point in the history
  • Loading branch information
rpardini authored and igorpecovnik committed Jun 12, 2023
1 parent fd404b4 commit c44fbbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tools/info/download-debs.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def download_using_armbian(exec_cmd: list[str], params: dict):
# only actually invoke anything if we're in a container
# run ./compile.sh <invocation> for each missing invocation
for invocation in missing_invocations:
cmds = ["/armbian/compile.sh"] + invocation
cmds = [(armbian_utils.find_armbian_src_path()["compile_sh_full_path"])] + invocation
log.info(f"Running: {' '.join(cmds)}")
if armbian_utils.get_from_env("ARMBIAN_RUNNING_IN_CONTAINER") == "yes":
dl_info = download_using_armbian(cmds, {"missing": "deb"})
Expand Down

0 comments on commit c44fbbf

Please sign in to comment.