Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b148c43 commit 4705023Copy full SHA for 4705023
tools/dep_updaters/update-simdjson.sh
@@ -7,6 +7,9 @@ DEPS_DIR="$BASE_DIR/deps"
7
[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node"
8
[ -x "$NODE" ] || NODE=$(command -v node)
9
10
+# shellcheck disable=SC1091
11
+. "$BASE_DIR/tools/dep_updaters/utils.sh"
12
+
13
NEW_VERSION="$("$NODE" --input-type=module <<'EOF'
14
const res = await fetch('https://api.github.com/repos/simdjson/simdjson/releases/latest');
15
if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res });
0 commit comments