diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/x2go-buildpackage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/x2go-buildpackage b/bin/x2go-buildpackage index 2fc12f6..dcaf1fb 100755 --- a/bin/x2go-buildpackage +++ b/bin/x2go-buildpackage @@ -38,7 +38,7 @@ PKGDIST="$HOME/pkg-dist/$PACKAGE" rm -f $PACKAGE_DIR/BUILDS_FOR # make sure our local working copy is up to date... -test -d $PACKAGE_DIR/.git && { cd $PACKAGE_DIR && git reset --hard; git pull; git checkout $CHECKOUT; } || { git clone git://code.x2go.org/$PACKAGE.git && cd $PACKAGE_DIR && git checkout $CHECKOUT; } +test -d $PACKAGE_DIR/.git && { cd $PACKAGE_DIR && git reset --hard; git pull; git checkout $CHECKOUT; } || { cd $PACKAGE_DIR && git clone git://code.x2go.org/$PACKAGE.git && git checkout $CHECKOUT; } cd $PACKAGE_DIR # by default we build for all current debian versions |