-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
get_jq.sh
executable file
·51 lines (44 loc) · 1.38 KB
/
get_jq.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bash
# Copyright 2021 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -o errexit
set -o nounset
set -o pipefail
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
cd "${REPO_ROOT}"
JQ_DIR="_bin/jq-1.5"
JQ_BIN="${REPO_ROOT}/${JQ_DIR}/jq"
if [[ -f "${JQ_BIN}" ]]; then
echo "$JQ_BIN"
exit 0
fi
bin-path() {
echo "${REPO_ROOT}/${JQ_DIR}/$1"
}
download() {
local name="$1"
local path="$(bin-path $name)"
curl -fsSL "https://github.com/stedolan/jq/releases/download/jq-1.5/$name" -o "$path"
chmod a+x "$path"
cp "$path" "$JQ_BIN"
}
mkdir -p "${JQ_DIR}"
# linux64 is used by CI, making sure that this is used in CI as well
download jq-linux64
# ensure that `_bin/jq-1.5/jq` is compatible with host, so that python3 test
# won't fail locally
if [[ "$(uname)" == Darwin ]]; then
download jq-osx-amd64
fi
echo "$JQ_BIN"