Skip to content

Commit

Permalink
ci: more quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrk committed Mar 21, 2019
1 parent 2463041 commit b5cc92f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/azure/update_download_page
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ export SRC_BYTESIZE=$(wc -c < $SRC_TARBALL)

# the freebsd build has to be there too
FREEBSD_JSON=$(curl --fail "https://ziglang.org/builds/freebsd-$VERSION.json" || exit 1)
export FREEBSD_TARBALL=$(echo "$FREEBSD_JSON" | jq .tarball -r)
export FREEBSD_BYTESIZE=$(echo "$FREEBSD_JSON" | jq .size -r)
export FREEBSD_SHASUM=$(echo "$FREEBSD_JSON" | jq .shasum -r)
export FREEBSD_TARBALL="$(echo "$FREEBSD_JSON" | jq .tarball -r)"
export FREEBSD_BYTESIZE="$(echo "$FREEBSD_JSON" | jq .size -r)"
export FREEBSD_SHASUM="$(echo "$FREEBSD_JSON" | jq .shasum -r)"

git clone https://github.com/ziglang/www.ziglang.org --depth 1
cd www.ziglang.org
Expand Down

0 comments on commit b5cc92f

Please sign in to comment.