1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00
This commit is contained in:
Alif Rachmawadi 2022-07-19 12:00:34 +07:00
parent 9c6ea81337
commit ea686d7c56
No known key found for this signature in database
GPG key ID: 19EE1E10C3733F31

View file

@ -90,7 +90,11 @@ transform_path() {
fi fi
} }
if ! command -v jq; then check_command() {
command -v "$1" > /dev/null 2>&1
}
if ! check_command jq; then
echo "jq not found, please install it, https://stedolan.github.io/jq/download/" echo "jq not found, please install it, https://stedolan.github.io/jq/download/"
exit 1 exit 1
fi fi