Fixed a typo in curl user-agent flag

This commit is contained in:
Denis Chernov
2024-08-15 20:52:39 +03:00
parent 199e7d1aa9
commit 887e4a2fdb

View File

@@ -104,7 +104,7 @@ install_binary_release() {
local URL="$RELEASES_BASE_URL/$FILE"
echo "Downloading: $URL"
curl -a "$CURL_USER_AGENT" -fsL "$URL" > "$FILE"
curl -A "$CURL_USER_AGENT" -fsL "$URL" > "$FILE"
tar zxf "$FILE"
echo 'Installing dolt into /usr/local/bin.'