Skip to content

Commit

Permalink
Fix shell vars
Browse files Browse the repository at this point in the history
  • Loading branch information
perklet committed Dec 30, 2023
1 parent 300bdee commit defd23b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions win/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ cd build/
# Download and patch boringssl

BORING_SSL_COMMIT=d24a38200fef19150eef00cad35b138936c08767
curl -L https://github.com/google/boringssl/archive/$(BORING_SSL_COMMIT).zip -o boringssl.zip
curl -L https://github.com/google/boringssl/archive/${BORING_SSL_COMMIT}.zip -o boringssl.zip
unzip -q -o boringssl.zip
mv boringssl-$(BORING_SSL_COMMIT) boringssl
mv boringssl-${BORING_SSL_COMMIT} boringssl

cd boringssl

Expand Down Expand Up @@ -48,10 +48,10 @@ export ECH=1

CURL_VERSION=curl-8.1.1

curl -L "https://curl.se/download/$(CURL_VERSION).tar.xz" \
-o "$(CURL_VERSION).tar.xz"
tar -xf $(CURL_VERSION).tar.xz
mv $(CURL_VERSION) curl
curl -L "https://curl.se/download/${CURL_VERSION}.tar.xz" \
-o "${CURL_VERSION}.tar.xz"
tar -xf ${CURL_VERSION}.tar.xz
mv ${CURL_VERSION} curl

cd curl

Expand Down

0 comments on commit defd23b

Please sign in to comment.