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

Skip to content

Commit 2f919b4

Browse files
authored
Merge branch 'develop' into feature/suite_manager_refactoting
2 parents 318b9ef + 72fa833 commit 2f919b4

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

development/refresh_sources.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ rm -rf ${UTPLSQL_DIR:-utPLSQL_latest_release}
1010
# clone utPLSQL master branch from upstream into utPLSQL sub-directory of your project
1111
git clone --depth=1 --branch=${SELFTESTING_BRANCH:-master} https://github.com/utPLSQL/utPLSQL.git ${UTPLSQL_DIR:-utPLSQL_latest_release}
1212

13-
rm -rf utPLSQL-cli/*
14-
# download beta version of utPLSQL-cli
15-
curl -Lk -o utPLSQL-cli.zip https://bintray.com/viniciusam/utPLSQL-cli/download_file?file_path=${UTPLSQL_CLI_FILE}
13+
# download latest release version of utPLSQL-cli
14+
curl -LOk $(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL-cli/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip" | sed 's/"//g')
1615
# unzip utPLSQL-cli and remove the zip file
17-
unzip utPLSQL-cli.zip && chmod u+x utPLSQL-cli/bin/utplsql && rm utPLSQL-cli.zip
16+
unzip -o utPLSQL-cli.zip && chmod u+x utPLSQL-cli/bin/utplsql && rm utPLSQL-cli.zip
1817

docs/userguide/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You may download with a one-liner if that is more convenient.
2020
curl -LOk $(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip" | sed 's/"//g')
2121
```
2222

23-
##Windows
23+
## Windows
2424

2525
To run the script on windows you will need [PowerShell 3.0](https://blogs.technet.microsoft.com/heyscriptingguy/2013/06/02/weekend-scripter-install-powershell-3-0-on-windows-7/) or above.
2626
You will also need .NET 4.0 Framework or above.

source/core/ut_utils.pks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ create or replace package ut_utils authid definer is
2121
*
2222
*/
2323

24-
gc_version constant varchar2(50) := 'v3.0.4.1437-develop';
24+
gc_version constant varchar2(50) := 'v3.0.4.1457-develop';
2525

2626
/* Constants: Event names */
2727
gc_run constant varchar2(12) := 'run';

0 commit comments

Comments
 (0)