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

Skip to content

Commit 3490789

Browse files
committed
Fix sqlcl download script error.
1 parent 4eceba2 commit 3490789

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.travis/download_sqlcl.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/bin/bash
22
set -e
33

4-
if [ ! $HOME/.cache/$SQLCL_FILE ]; then
5-
.travis/download.sh -p sqlcl
4+
cd .travis
5+
if [ ! -d $HOME/.cache/sqlcl ]; then
6+
download.sh -p sqlcl
67
unzip -q $SQLCL_FILE
78
bash mv sqlcl $HOME/.cache
89
rm -f $SQLCL_FILE

0 commit comments

Comments
 (0)