diff options
| author | xHire <xhire@tuxportal.cz> | 2008-10-03 22:12:27 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2008-10-03 22:12:27 +0200 |
| commit | b925bcd3fda6a1cc5b7e1c0d79e168598128a6e3 (patch) | |
| tree | 7b0e2cfc8e80938e29f15358cd483b1615b36219 /packaging/linux/build.sh | |
| parent | cf39e00cc070308d00712a9071289966940e8727 (diff) | |
| parent | 62cab8ca0c0ac24749a670040f88075e0d2d4cb7 (diff) | |
Merge branch 'master' of ssh://xHire@repo.or.cz/srv/git/tuxanci
Diffstat (limited to 'packaging/linux/build.sh')
| -rwxr-xr-x | packaging/linux/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/linux/build.sh b/packaging/linux/build.sh index b46d78e..3e36a93 100755 --- a/packaging/linux/build.sh +++ b/packaging/linux/build.sh @@ -35,7 +35,7 @@ done # VARIABLES ############################################################################### APPNAME="tuxanci" -SVN="http://opensvn.csie.org/tuxanci_ng/" +GIT="git://repo.or.cz/tuxanci.git" BUNDLE_PREFIX="${HOME}"/tuxanci-bundle LOG="${BUNDLE_PREFIX}"/linux.log SOURCE="${BUNDLE_PREFIX}"/"${APPNAME}"_source_"${VERSION}" @@ -53,7 +53,7 @@ touch "${LOG}" || ( echo "I was unable to create log file"; exit 1 ) echo "" > "${LOG}" # LOG CLEANUP echo "<Downloading files from SVN repository>" echo "<******************************>" -svn export $SVN ${SVN_REV} ${SOURCE} >> "${LOG}" || ( echo "${ERROR_MESSAGE}"; exit 1 ) +git export ${GIT} ${SVN_REV} ${SOURCE} >> "${LOG}" || ( echo "${ERROR_MESSAGE}"; exit 1 ) rm -rf ${SOURCE}/packaging ############################################################################### # CREATE SOURCE PACKAGE |