From 0ce03a8c9a25c33da4255720fae9d2da4a039bb9 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Fri, 18 Mar 2022 10:15:13 -0500 Subject: [PATCH] apt does not have a stable interface, using apt-get instead. --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d3d4ca0..556861f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -94,13 +94,13 @@ sonar.go.coverage.reportPaths=cover.out stage("Build go-temper") { container("golang-ubuntu") { sh """ - apt update - apt install --yes --no-install-recommends libusb-1.0-0-dev gcc g++ + apt-get update + apt-get install --yes --no-install-recommends libusb-1.0-0-dev gcc g++ if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then - apt install --yes --no-install-recommends git + apt-get install --yes --no-install-recommends git fi if [ ! "/usr/bin/upx" ] || [ ! -x "/usr/bin/upx" ]; then - apt install --yes --no-install-recommends upx + apt-get install --yes --no-install-recommends upx fi ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}" cd "/go/src/${env.JOB_BASE_NAME}"