Get the right branch
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is passing Details

Closes https://git.autonomic.zone/coop-cloud/abra/issues/188.
This commit is contained in:
decentral1se 2021-07-04 22:09:18 +02:00
parent d96289a6a2
commit c4bedfb516
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 5 additions and 1 deletions

View File

@ -8,6 +8,10 @@ PLUGIN_BRANCH=${PLUGIN_BRANCH:-main}
PLUGIN_HOST=${PLUGIN_HOST:-git.autonomic.zone}
PLUGIN_PORT=${PLUGIN_PORT:-2222}
checkout_main_or_master() {
git checkout main > /dev/null 2>&1 || git checkout master > /dev/null 2>&1
}
load_deploy_key() {
echo "--- start ssh key load ---"
mkdir -p "$HOME/.ssh/"
@ -34,7 +38,7 @@ run_abra_cmd() {
echo "Automagically detected $recipe as desired recipe repository, cloning now..."
git clone "https://git.autonomic.zone/coop-cloud/$recipe.git" "/root/.abra/apps/$recipe"
cd "/root/.abra/apps/$recipe" && \
cd "/root/.abra/apps/$recipe" && checkout_main_or_master && \
git remote rm origin && \
git remote add origin "ssh://git@git.autonomic.zone:2222/coop-cloud/$recipe.git"