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.
2 parents be752e5 + d0db1e5 commit 63ff106Copy full SHA for 63ff106
1 file changed
docs/userguide/install.md
@@ -5,7 +5,7 @@ Here is a little snippet that can be handy for downloading latest version.
5
```bash
6
#!/bin/bash
7
# 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')
+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')
9
# Download the latest release "zip" file
10
curl -Lk "${UTPLSQL_DOWNLOAD_URL}" -o utPLSQL.zip
11
# Extract downloaded "zip" file
0 commit comments