contrib: download-frozen-image-v2.sh requires jq

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
Upstream-commit: 887bc48319a650174e3820c677e337969e2d3aca
Component: engine
This commit is contained in:
Antonio Murdaca
2016-12-01 12:40:58 +01:00
parent 978ceda065
commit 0021707a39

View File

@ -11,6 +11,10 @@ if ! command -v curl &> /dev/null; then
echo >&2 'error: "curl" not found!'
exit 1
fi
if ! command -v jq &> /dev/null; then
echo >&2 'error: "jq" not found!'
exit 1
fi
usage() {
echo "usage: $0 dir image[:tag][@digest] ..."