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

Skip to content

Commit 35d200c

Browse files
committed
Merge branch 'develop' of https://github.com/utPLSQL/utPLSQL into feature/pure_sql
2 parents 3759e90 + e4525aa commit 35d200c

84 files changed

Lines changed: 170 additions & 1890 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ before_script:
9090
- if [[ ! $TRAVIS_TAG ]]; then bash .travis/install.sh; fi
9191
- if [[ ! $TRAVIS_TAG ]]; then bash .travis/install_utplsql_release.sh; fi
9292
- if [[ ! $TRAVIS_TAG ]]; then bash .travis/run_examples.sh; fi
93-
- if [[ ! $TRAVIS_TAG ]]; then bash .travis/run_old_tests.sh; fi
9493

9594
script:
9695
- if [[ ! $TRAVIS_TAG ]]; then bash test/install_and_run_tests.sh; fi

.travis/build_docs.sh

100644100755
File mode changed.

.travis/build_release_archive.sh

100644100755
File mode changed.

.travis/coveralls_uploader.sh

100644100755
File mode changed.

.travis/download.sh

100644100755
File mode changed.

.travis/get_project_build_version.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/usr/bin/env bash
2-
echo `sed -r "s/(v?[0-9]+\.)([0-9]+\.)([0-9]+)(-.*)?/\1\2\3\.${UTPLSQL_BUILD_NO}\4/" <<< "${UTPLSQL_VERSION}"`
2+
echo `sed -E "s/(v?[0-9]+\.)([0-9]+\.)([0-9]+)(-.*)?/\1\2\3\.${UTPLSQL_BUILD_NO}\4/" <<< "${UTPLSQL_VERSION}"`

.travis/get_project_version.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ else
88
version=`cat VERSION`
99
#When on develop branch, add "-develop" to the version text
1010
if [[ "${CURRENT_BRANCH}" == "develop" ]]; then
11-
version=`sed -r "s/(v?[0-9]+\.[0-9]+\.[0-9]+).*/\1-develop/" <<< "${version}"`
11+
version=`sed -E "s/(v?[0-9]+\.[0-9]+\.[0-9]+).*/\1-develop/" <<< "${version}"`
1212
fi
1313
fi
1414
echo ${version}

.travis/install.sh

100644100755
File mode changed.

.travis/install_sqlcl.sh

100644100755
File mode changed.

.travis/install_utplsql_release.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)