fix: standardise checkout options

This commit is contained in:
2021-10-14 12:17:58 +02:00
parent 113bdf9e86
commit ae32b1eed2
3 changed files with 5 additions and 5 deletions

View File

@ -142,7 +142,11 @@ func EnsureVersion(recipeName, version string) error {
return err
}
opts := &git.CheckoutOptions{Branch: tagRef, Keep: true}
opts := &git.CheckoutOptions{
Branch: tagRef,
Create: false,
Force: true,
}
if err := worktree.Checkout(opts); err != nil {
return err
}
@ -181,7 +185,6 @@ func EnsureLatest(recipeName string) error {
checkOutOpts := &git.CheckoutOptions{
Create: false,
Force: true,
Keep: false,
Branch: plumbing.ReferenceName(refName),
}