diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2019-10-29 19:07:15 +0000 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-10-30 09:17:04 +0100 |
commit | 738606e45251b73950a52e62e7186fe4516a018a (patch) | |
tree | 2ea98e9e4fa28a37f73f39986c2419b71296873f /travis-ci | |
parent | a346aa7c38dff023a6783eade2900cb75eff1d25 (diff) | |
download | systemd-738606e45251b73950a52e62e7186fe4516a018a.tar.gz |
coverity: replace python with jq
Judging by https://travis-ci.org/systemd/systemd/jobs/604425785
(where the script failed with "tools/coverity.sh: line 45: python: command not found")
python-unversioned-command is no longer installed by default with python2.
Given that it's not the first time python has vanished and it's not clear
what exactly should be installed to make sure it's there, let's just use jq instead.
Diffstat (limited to 'travis-ci')
-rwxr-xr-x | travis-ci/managers/fedora.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/travis-ci/managers/fedora.sh b/travis-ci/managers/fedora.sh index 38cb3d3158..6e81d14b33 100755 --- a/travis-ci/managers/fedora.sh +++ b/travis-ci/managers/fedora.sh @@ -16,7 +16,7 @@ DOCKER_EXEC="${DOCKER_EXEC:-docker exec -it $CONT_NAME}" DOCKER_RUN="${DOCKER_RUN:-docker run}" REPO_ROOT="${REPO_ROOT:-$PWD}" ADDITIONAL_DEPS=(dnf-plugins-core - python2 iputils + jq iputils hostname libasan python3-pyparsing python3-evdev |