1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00

check jq, fixes #170

This commit is contained in:
Alif Rachmawadi 2022-07-19 06:32:29 +07:00
parent 29ad5bdaf4
commit 9c6ea81337
No known key found for this signature in database
GPG key ID: 19EE1E10C3733F31

View file

@ -90,6 +90,11 @@ transform_path() {
fi
}
if ! command -v jq; then
echo "jq not found, please install it, https://stedolan.github.io/jq/download/"
exit 1
fi
CACHE_PATH=""
while getopts 'c:' flag; do