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

Skip to content

Commit 2bf69a4

Browse files
authored
Cleanup of release archive name
Removed version number from archive name and archive directory. This change is intended to simplify automation for download and isntallation of latest utPLSQL version. The unzip/install scripts can now assume that archive name is `utPSLQL.[zip|tar.gz]` and all the sources are in `utPLSQL/source` directory
1 parent 3ffdf3b commit 2bf69a4

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.travis/build_release_archive.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ mv -f .gitattributes.release .gitattributes
99
git add .
1010
git commit -m "tmp commit for building a release archive"
1111

12-
git archive --prefix="utPLSQL${UTPLSQL_BUILD_VERSION}"/ -o "utPLSQL${UTPLSQL_BUILD_VERSION}".zip --format=zip HEAD
13-
git archive --prefix="utPLSQL${UTPLSQL_BUILD_VERSION}"/ -o "utPLSQL${UTPLSQL_BUILD_VERSION}".tar.gz --format=tar.gz HEAD
12+
# git archive --prefix="utPLSQL${UTPLSQL_BUILD_VERSION}"/ -o "utPLSQL${UTPLSQL_BUILD_VERSION}".zip --format=zip HEAD
13+
# git archive --prefix="utPLSQL${UTPLSQL_BUILD_VERSION}"/ -o "utPLSQL${UTPLSQL_BUILD_VERSION}".tar.gz --format=tar.gz HEAD
14+
15+
git archive --prefix=utPLSQL/ -o utPLSQL.zip --format=zip HEAD
16+
git archive --prefix=utPLSQL/ -o utPLSQL.tar.gz --format=tar.gz HEAD
1417

1518

0 commit comments

Comments
 (0)