diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-08-15 02:12:47 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-15 02:12:47 +0300 |
commit | f90cb26c7f15659f3e2be8061295997df2bb76cc (patch) | |
tree | 12bde00a8072d9b2ee83273d6238a9571edd11f5 /test/common-utils/fedora.sh | |
parent | 8b6f08825643e2d5835ed3138dee5301a4db4ffa (diff) |
Common-utils: Fixes "No package jq available" errors for CentOS (#644)feature_common-utils_2.1.1
* add checks for "jq"
* install epel-release if necessary
* clean up epel-release post installation of "jq"
Diffstat (limited to 'test/common-utils/fedora.sh')
-rwxr-xr-x | test/common-utils/fedora.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/common-utils/fedora.sh b/test/common-utils/fedora.sh index b32a7f1..67706d4 100755 --- a/test/common-utils/fedora.sh +++ b/test/common-utils/fedora.sh @@ -9,6 +9,7 @@ source dev-container-features-test-lib . /etc/os-release check "non-root user" test "$(whoami)" = "devcontainer" check "distro" test "${ID}" = "fedora" +check "jq" jq --version # Report result reportResults
\ No newline at end of file |