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}"