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.
1 parent e3bd729 commit 2d8d273Copy full SHA for 2d8d273
2 files changed
.travis/install_sqlcl.sh
@@ -1,5 +1,5 @@
1
#!/bin/bash
2
-set -ev
+set -e
3
4
SQLCL_FILE=sqlcl-4.2.0.16.355.0402-no-jre.zip
5
cd .travis
.travis/start_db.sh
@@ -7,7 +7,7 @@ if [ $ORACLE_VERSION = $ORACLE_12cR1SE ]; then
7
docker pull viniciusam/oracle-12c-r1-se
8
docker run -d --name $ORACLE_VERSION -p 1521:1521 viniciusam/oracle-12c-r1-se
9
docker logs -f $ORACLE_VERSION | grep -m 1 "DATABASE IS READY TO USE!" --line-buffered
10
- docker exec $ORACLE_VERSION ./createPDB.sh
+ docker exec $ORACLE_VERSION ./createPDB.sh ORCLPDB1
11
fi
12
13
# Oracle 11g R2 XE
0 commit comments