From 03d675157f903e5de2ca8361e32b7c76dacfe605 Mon Sep 17 00:00:00 2001 From: csoler Date: Fri, 11 Aug 2017 19:33:23 +0200 Subject: [PATCH] fixed branching problem in makeSOurcePackage.sh --- build_scripts/Debian+Ubuntu/makeSourcePackage.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build_scripts/Debian+Ubuntu/makeSourcePackage.sh b/build_scripts/Debian+Ubuntu/makeSourcePackage.sh index e74d7559c..27f440bfe 100755 --- a/build_scripts/Debian+Ubuntu/makeSourcePackage.sh +++ b/build_scripts/Debian+Ubuntu/makeSourcePackage.sh @@ -4,7 +4,7 @@ version="0.6.3" gitpath="https://github.com/RetroShare/RetroShare.git" workdir=retroshare-${version} -branch="master" +branch="v0.6.3-official_release" #bubba3="Y" # comment out to compile for bubba3 ###################################################### @@ -84,10 +84,10 @@ echo Checking out latest snapshot... cd ${workdir}/src git clone --depth 1 https://github.com/RetroShare/RetroShare.git --single-branch --branch $branch . -if ! test "$hhsh" = "" ; then - echo Checking out revision $hhsh - git checkout $hhsh -fi +# if ! test "$hhsh" = "" ; then +# echo Checking out revision $hhsh +# git checkout $hhsh +# fi cd -