Merge pull request #210 from laggardkernel/bugfix/default-branch

[Bugfix] Remove hardcoding default branch as "master"
This commit is contained in:
Bruno Sutic 2021-08-14 10:57:28 +02:00 committed by GitHub
commit 38ab7d9ef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 5 deletions

View File

@ -13,9 +13,14 @@ else # shell output functions
fi
clone() {
local plugin="$1"
cd "$(tpm_path)" &&
GIT_TERMINAL_PROMPT=0 git clone -b "$branch" --single-branch --recursive "$plugin" >/dev/null 2>&1
local plugin="$1" branch="$2"
if [ -n "$branch" ]; then
cd "$(tpm_path)" &&
GIT_TERMINAL_PROMPT=0 git clone -b "$branch" --single-branch --recursive "$plugin" >/dev/null 2>&1
else
cd "$(tpm_path)" &&
GIT_TERMINAL_PROMPT=0 git clone --single-branch --recursive "$plugin" >/dev/null 2>&1
fi
}
# tries cloning:
@ -30,8 +35,7 @@ clone_plugin() {
# clone plugin and produce output
install_plugin() {
local plugin="$1"
local branch=`[ -z "$2" ] && echo "master" || echo "$2"`
local plugin="$1" branch="$2"
local plugin_name="$(plugin_name_helper "$plugin")"
if plugin_already_installed "$plugin"; then