mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
pipeline: download-debs: de-hardcode path to compile.sh for downloader
This commit is contained in:
@@ -90,7 +90,7 @@ log.info(f"Missing invocations: {len(missing_invocations)}")
|
||||
# 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"})
|
||||
|
||||
Reference in New Issue
Block a user