Skip to content
Snippets Groups Projects
Commit 2256fde3 authored by rinpatch's avatar rinpatch
Browse files

Fix branch detection and hardcode fe branch to be develop

parent c36706be
No related branches found
No related tags found
No related merge requests found
Pipeline #18152 failed
......@@ -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
;;
-*)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment