We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a4cfb5 commit 0f315e0Copy full SHA for 0f315e0
.github/workflows/ci-testing-deploy.yml
@@ -1305,7 +1305,7 @@ jobs:
1305
- name: show system version
1306
run: ./ci/helpers/show_system_versions.bash
1307
- name: install 7zip
1308
- run: ./ci/github/helpers/install_7zip.bash
+ run: sudo ./ci/github/helpers/install_7zip.bash
1309
- name: install
1310
run: ./ci/github/unit-testing/dynamic-sidecar.bash install
1311
- name: typecheck
ci/github/helpers/install_7zip.bash
@@ -9,4 +9,4 @@ set -o nounset # abort on unbound variable
9
set -o pipefail # don't hide errors within pipes
10
IFS=$'\n\t'
11
12
-apt-get install p7zip-full
+exec "$( dirname -- "$0"; )"/../../../scripts/install_7zip.bash
0 commit comments