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:
parent
29ad5bdaf4
commit
9c6ea81337
1 changed files with 5 additions and 0 deletions
5
setup.sh
5
setup.sh
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue