Skip to content

Commit 0ed3a31

Browse files
authored
Update create_release.sh
Fixed removal of non-existing files.
1 parent 5d33b3a commit 0ed3a31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: .travis/create_release.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ sed -i '/CYGWIN\*) cygwin=true/c\ CYGWIN*|MINGW*) cygwin=true ;;' target/appass
99
mkdir dist
1010
mv target/appassembler utPLSQL-cli
1111
# Remove Oracle libraries du to licensing problems
12-
rm utPLSQL-cli/lib/ucp*.jar
13-
rm utPLSQL-cli/lib/ojdbc8*.jar
14-
rm utPLSQL-cli/lib/orai18n*.jar
12+
rm -f utPLSQL-cli/lib/ucp*.jar
13+
rm -f utPLSQL-cli/lib/ojdbc8*.jar
14+
rm -f utPLSQL-cli/lib/orai18n*.jar
1515

1616
zip -r -q dist/utPLSQL-cli-${TRAVIS_BRANCH}-${VERSION}.zip utPLSQL-cli
1717
zip -r -q utPLSQL-cli.zip utPLSQL-cli

0 commit comments

Comments
 (0)