From 9d18f4a18a9227ab05d55bc5c73811931e3c645b Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 2 Mar 2022 15:23:06 +0100 Subject: [PATCH] Create `vendor/bin` if it doesn't exist --- script/validate-version | 1 + 1 file changed, 1 insertion(+) diff --git a/script/validate-version b/script/validate-version index 73ba6aaacb..28102c5038 100755 --- a/script/validate-version +++ b/script/validate-version @@ -2,6 +2,7 @@ set -e +mkdir -p vendor/bin if [[ ! -f vendor/bin/jq ]]; then curl -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-osx-amd64 > vendor/bin/jq chmod +x vendor/bin/jq