diff options
author | Christian Breunig <christian@breunig.cc> | 2023-03-12 20:20:00 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-03-12 20:20:00 +0100 |
commit | 5ed3ed65f447788a2dccd02e18f1aee73708da06 (patch) | |
tree | 55b1598eb28a9224d6d8ba943407dcc709ec0a34 /vars | |
parent | fdc0441a77f01053f7ac94e73a0cc7c74dc5296c (diff) | |
download | vyos-build-5ed3ed65f447788a2dccd02e18f1aee73708da06.tar.gz vyos-build-5ed3ed65f447788a2dccd02e18f1aee73708da06.zip |
Jenkins: lib: T5076: install dependency packages without prompting
Diffstat (limited to 'vars')
-rw-r--r-- | vars/cloneAndBuild.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vars/cloneAndBuild.groovy b/vars/cloneAndBuild.groovy index 48d73a66..f4114a68 100644 --- a/vars/cloneAndBuild.groovy +++ b/vars/cloneAndBuild.groovy @@ -59,7 +59,7 @@ def call(description, architecture, pkgList, buildCmd) { // build dependency package and install it sh """ if [ -f debian/control ]; then - sudo mk-build-deps --install debian/control + sudo mk-build-deps --install --tool "apt-get --yes --no-install-recommends" sudo dpkg -i *build-deps*.deb fi """ |