From 5073b8e55c3419da80d1924e32b5ed16cd649080 Mon Sep 17 00:00:00 2001 From: Andrey Khrolenok Date: Mon, 26 Feb 2024 23:22:08 +0300 Subject: [PATCH] Update blueprint update script --- scripts/update | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/update b/scripts/update index c012e41..312ec4e 100755 --- a/scripts/update +++ b/scripts/update @@ -9,8 +9,12 @@ cd "${ROOT}" if git branch -r | grep -q "blueprint/dev" ; then git fetch blueprint dev +elif git branch -r | grep -q "blueprint/develop" ; then + git fetch blueprint develop elif git branch -r | grep -q "blueprint/master" ; then git fetch blueprint master +elif git branch -r | grep -q "blueprint/main" ; then + git fetch blueprint main fi git fetch