diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2019-03-11 14:53:06 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2019-03-12 22:38:05 -0400 |
commit | 53ab906c8ecdbfc204887b20f8ed157caf4e0314 (patch) | |
tree | 79a2b7e659ec408c7a83b8ffece02ed17572423f /libs | |
parent | b170479336afa1577c70db5d9c9a8c0c86441245 (diff) | |
download | librebootfr-53ab906c8ecdbfc204887b20f8ed157caf4e0314.tar.gz librebootfr-53ab906c8ecdbfc204887b20f8ed157caf4e0314.zip |
libs/git: Prefix branch names with "libreboot-"
This is a slight mitigation against branch name collisions. More
robust handling should be added in the future but this is simple
enough and provides some clear indication which branches have been
created by the build system.
Diffstat (limited to 'libs')
-rwxr-xr-x | libs/git | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -15,6 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +BRANCH_PREFIX="libreboot-" DOTGIT=".git" HEAD="HEAD" ORIGIN_HEAD="origin/HEAD" @@ -325,7 +326,7 @@ git_project_prepare_patch() { local configs_path="$project_path/$CONFIGS" local prepare_branch local prepare_path - local branch=$project + local branch=$BRANCH_PREFIX$project local argument local path @@ -371,7 +372,7 @@ git_project_prepare_revision() { local configs_path="$project_path/$CONFIGS" local prepare_branch local prepare_revision - local branch=$project + local branch=$BRANCH_PREFIX$project local argument local path @@ -416,7 +417,7 @@ git_project_prepare_check() { local project_path=$(project_path "$project") local configs_path="$project_path/$CONFIGS" local prepare_branch - local branch=$project + local branch=$BRANCH_PREFIX$project local argument local path @@ -458,7 +459,7 @@ git_project_prepare_clean() { local repository_path=$(git_project_repository_path "$repository") local prepare_branch - local branch=$project + local branch=$BRANCH_PREFIX$project local argument for argument in "" "$@" @@ -500,7 +501,7 @@ git_project_checkout() { local repository_path=$(git_project_repository_path "$repository") local checkout_branch - local branch=$project + local branch=$BRANCH_PREFIX$project local argument for argument in "" "$@" @@ -560,7 +561,7 @@ git_project_release() { local repository_path=$(git_project_repository_path "$repository") local release_branch - local branch=$project + local branch=$BRANCH_PREFIX$project local argument for argument in "" "$@" @@ -601,7 +602,7 @@ git_project_release_check() { local repository_path=$(git_project_repository_path "$repository") local release_branch - local branch=$project + local branch=$BRANCH_PREFIX$project local argument for argument in "" "$@" |