From 2256fde33af7e559ce43d497d38d5343b2cbb39d Mon Sep 17 00:00:00 2001 From: rinpatch Date: Thu, 3 Oct 2019 14:57:34 +0300 Subject: [PATCH] Fix branch detection and hardcode fe branch to be develop --- manage.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manage.sh b/manage.sh index 04c6005..dcd4c81 100755 --- a/manage.sh +++ b/manage.sh @@ -3,7 +3,7 @@ fetch() { if [ $LOCAL = false ]; then mkdir .tmp - git clone $FRONTEND_REPO --branch $BRANCH --depth 1 .tmp/fe + git clone $FRONTEND_REPO --branch develop --depth 1 .tmp/fe git clone $BACKEND_REPO --branch $BRANCH --depth 1 .tmp/be FRONTEND_REPO=.tmp/fe BACKEND_REPO=.tmp/be @@ -75,7 +75,7 @@ else shift 2 ;; --branch) - branch="$2" + BRANCH="$2" shift 2 ;; -*)