packages: do not set default pkg branch to master

pull/824/head^2
fdeitylink 3 years ago committed by Pablo Aguiar
parent f959596189
commit 53d37a9893

@ -16,12 +16,10 @@ function omf.packages.install -a name_or_url
set name $name_or_url
set url $props[2]
set branch $props[3]
if test -z "$branch"
set branch "master"
end
else
set name (omf.packages.name $name_or_url)
set url $name_or_url
set branch ""
end
if contains -- $name (omf.packages.list)

@ -1,3 +1,7 @@
function omf.repo.clone -a url branch path
command git clone --quiet $url -b $branch $path
if test -z "$branch"
command git clone --quiet $url $path
else
command git clone --quiet $url -b $branch $path
end
end

Loading…
Cancel
Save