Skip to content

Commit 8c8ce09

Browse files
committed
Jenkinsfile: add --yes to apt-get instructions
1 parent 03bc8d1 commit 8c8ce09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ pipeline {
178178
sh '''
179179
sudo apt-get update && sudo apt-get upgrade --yes
180180
curl --location "$(cat deps/k_release)/kframework_5.0.0_amd64_bionic.deb" --output kframework.deb
181-
sudo apt-get install ./kframework.deb
181+
sudo apt-get install --yes ./kframework.deb
182182
cp -r package/debian ./
183183
dpkg-buildpackage --no-sign
184184
'''
@@ -200,7 +200,7 @@ pipeline {
200200
unstash 'bionic'
201201
sh '''
202202
sudo apt-get update && sudo apt-get upgrade --yes
203-
sudo apt-get install ./kevm_${KEVM_RELEASE_ID}_amd64.deb
203+
sudo apt-get install --yes ./kevm_${KEVM_RELEASE_ID}_amd64.deb
204204
make test-interactive-firefly
205205
'''
206206
}

0 commit comments

Comments
 (0)