1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-12-01 12:40:58 +01:00
parent c34efaeca0
commit 887bc48319
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9

View file

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