aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/bin/update.sh
diff options
context:
space:
mode:
authorM.Gergo2018-12-16 16:35:17 +0100
committerM.Gergo2018-12-16 16:35:17 +0100
commite6988247360fa98b85915a38803d018dd353df00 (patch)
tree24f42628f6cdaedacc06ce033378173a0e561be9 /mayor-orig/bin/update.sh
parent2a219b9ea312fb88703a33ea2450e32af40be64a (diff)
downloadmayor-e6988247360fa98b85915a38803d018dd353df00.tar.gz
mayor-e6988247360fa98b85915a38803d018dd353df00.zip
Rev: 4412
Diffstat (limited to 'mayor-orig/bin/update.sh')
-rw-r--r--mayor-orig/bin/update.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/mayor-orig/bin/update.sh b/mayor-orig/bin/update.sh
index 0be82608..39338119 100644
--- a/mayor-orig/bin/update.sh
+++ b/mayor-orig/bin/update.sh
@@ -137,12 +137,12 @@ if [ "$EXECONLY" != "1" ]; then
if [ "$HTTP_SERVER" == '' ]; then
if [ -f $SVN ]; then
# frissítés SVN-ből
- $SVN --force export https://svn.mayor.hu/svn/trunk/mayor-base/bin "$BASEDIR/bin" > /dev/null
+ $SVN --force export svn+ssh://svn.mayor.hu/var/svn/trunk/mayor-base/bin "$BASEDIR/bin" > /dev/null
for MODULE in $MODULES; do
echo -n " $MODULE... "
chmod +x $BASEDIR/bin/mayor
if [ $? != 0 ]; then exit 2; fi
- UJ_REV=`$SVN --force export https://svn.mayor.hu/svn/trunk/$MODULE/update "$BASEDIR/update" | grep revision | cut -d ' ' -f 3 | uniq | sed -e 's/\.//g'`
+ UJ_REV=`$SVN --force export svn+ssh://svn.mayor.hu/var/svn/trunk/$MODULE/update "$BASEDIR/update" | grep revision | cut -d ' ' -f 3 | uniq | sed -e 's/\.//g'`
if [ $? != 0 ]; then exit 3; fi
echo "kész."
done