Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 63ff106

Browse files
authored
Merge pull request #342 from jgebal/bugfix/fix_download_url_in_doc
Fixed variables in documentation
2 parents be752e5 + d0db1e5 commit 63ff106

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/userguide/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Here is a little snippet that can be handy for downloading latest version.
55
```bash
66
#!/bin/bash
77
# Get the url to latest release "zip" file
8-
DOWNLOAD_URL=$(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip" | sed 's/"//g')
8+
UTPLSQL_DOWNLOAD_URL=$(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip" | sed 's/"//g')
99
# Download the latest release "zip" file
1010
curl -Lk "${UTPLSQL_DOWNLOAD_URL}" -o utPLSQL.zip
1111
# Extract downloaded "zip" file

0 commit comments

Comments
 (0)