Skip to content

Commit

Permalink
Update create_release.sh
Browse files Browse the repository at this point in the history
Fixed removal of non-existing files.
  • Loading branch information
jgebal committed Nov 22, 2017
1 parent 5d33b3a commit 0ed3a31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis/create_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ sed -i '/CYGWIN\*) cygwin=true/c\ CYGWIN*|MINGW*) cygwin=true ;;' target/appass
mkdir dist
mv target/appassembler utPLSQL-cli
# Remove Oracle libraries du to licensing problems
rm utPLSQL-cli/lib/ucp*.jar
rm utPLSQL-cli/lib/ojdbc8*.jar
rm utPLSQL-cli/lib/orai18n*.jar
rm -f utPLSQL-cli/lib/ucp*.jar
rm -f utPLSQL-cli/lib/ojdbc8*.jar
rm -f utPLSQL-cli/lib/orai18n*.jar

zip -r -q dist/utPLSQL-cli-${TRAVIS_BRANCH}-${VERSION}.zip utPLSQL-cli
zip -r -q utPLSQL-cli.zip utPLSQL-cli
Expand Down

0 comments on commit 0ed3a31

Please sign in to comment.