diff --git a/serve.go b/serve.go index 1f840b2..16dafe1 100644 --- a/serve.go +++ b/serve.go @@ -12,11 +12,11 @@ func gitPushXimera(ref string) error { args := []string{"push", "ximera"} if len(ref) > 0 { - args = []string{"push", "ximera", ref} + args = []string{"push", "ximera", "+"+ref} } if ref == "master" { - args = []string{"push", "--set-upstream", "ximera", ref} + args = []string{"push", "--set-upstream", "ximera", "+"+ref} } yellow := color.New(color.FgYellow)