Skip to content
Snippets Groups Projects
Commit 3f0315a6 authored by rinpatch's avatar rinpatch
Browse files

manage.sh: Change remote urls to avoid redirects and add --branch option

parent 256cf9e1
Branches
No related tags found
No related merge requests found
Pipeline #18081 passed
......@@ -26,8 +26,8 @@ all() {
build
}
FRONTEND_REMOTE_REPO_DEFAULT='https://git.pleroma.social/pleroma/pleroma-fe'
BACKEND_REMOTE_REPO_DEFAULT='https://git.pleroma.social/pleroma/pleroma'
FRONTEND_REMOTE_REPO_DEFAULT='https://git.pleroma.social/pleroma/pleroma-fe.git'
BACKEND_REMOTE_REPO_DEFAULT='https://git.pleroma.social/pleroma/pleroma.git'
FRONTEND_LOCAL_REPO_DEFAULT='../pleroma-fe'
BACKEND_LOCAL_REPO_DEFAULT='../pleroma'
......@@ -74,6 +74,10 @@ else
BACKEND_REPO="$2"
shift 2
;;
--branch)
branch="$2"
shift 2
;;
-*)
echo "invalid option: $1" 1>&2
shift 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment