10000 Merge pull request #874 from utPLSQL/feature/install_doc_fix · utPLSQL/utPLSQL@7fc2133 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7fc2133

Browse files
authored
Merge pull request #874 from utPLSQL/feature/install_doc_fix
Updated `install.md`
2 parents fab90fd + f8d51bb commit 7fc2133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/userguide/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To download latest version of utPLSQL from github on both Unix/Linux as well as
99
```bash
1010
#!/bin/bash
1111
# Get the url to latest release "zip" file
12-
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')
12+
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')
1313
# Download the latest release "zip" file
1414
curl -Lk "${UTPLSQL_DOWNLOAD_URL}" -o utPLSQL.zip
1515
# Extract downloaded "zip" file
@@ -19,7 +19,7 @@ unzip -q utPLSQL.zip
1919
You may download with a one-liner if that is more convenient.
2020
```bash
2121
#!/bin/bash
22-
curl -LOk $(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip" | sed 's/"//g')
22+
curl -LOk $(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip\"" | sed 's/"//g')
2323
```
2424

2525
## Windows

0 commit comments

Comments
 (0)
0