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

Skip to content

Commit bd91812

Browse files
committed
Changes on install_sqlcl.
1 parent f0b2985 commit bd91812

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ env:
2626
- PAGES_VERSION_BASE="version3"
2727
- CACHE_DIR=$HOME/.cache
2828
# Database Env
29-
- SQLCLI=sql
30-
- ORACLE_PWD=oracle
29+
- SQLCLI="$HOME/sqlcl/bin/sql"
30+
- ORACLE_PWD="oracle"
3131
- CONTAINER_IP=""
3232
- CONNECTION_STR=""
3333
- ORACLE_12cR1SE="12c-r1-se"

.travis/install_sqlcl.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ if [ ! -f $CACHE_DIR/$SQLCL_FILE ]; then
1111
fi;
1212

1313
# Install sqlcl.
14-
unzip -q $CACHE_DIR/$SQLCL_FILE -d /usr/share
15-
ln -s /usr/share/sqlcl/bin/sql /usr/bin/sql
14+
unzip -q $CACHE_DIR/$SQLCL_FILE -d $HOME
1615

1716
# Check if it is installed correctly.
18-
sql -v
17+
$SQLCLI -v

0 commit comments

Comments
 (0)