diff options
| author | Tomas Chvatal (scarabeus) <tomas.chvatal@gmail.com> | 2008-10-03 19:22:07 +0200 |
|---|---|---|
| committer | Tomas Chvatal (scarabeus) <tomas.chvatal@gmail.com> | 2008-10-03 19:22:07 +0200 |
| commit | 62cab8ca0c0ac24749a670040f88075e0d2d4cb7 (patch) | |
| tree | aec578f0ab4b5136112cc1c5f6b9c23f11667fbb /packaging/linux/build.sh | |
| parent | d31d8e3576e11fef7fd5f419925b1aad89a13f23 (diff) | |
Update our build script to be aware of change to git :]
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 |