Sfoglia il codice sorgente

Fix error thrown when there's nothing to push

Brendan Abolivier 6 anni fa
parent
commit
bd148feba3
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
1 ha cambiato i file con 7 aggiunte e 1 eliminazioni
  1. 7
    1
      src/git/git.go

+ 7
- 1
src/git/git.go Vedi File

@@ -110,7 +110,13 @@ func Push(r *git.Repository, keyPath string) error {
110 110
 		return err
111 111
 	}
112 112
 
113
-	return r.Push(&git.PushOptions{
113
+	err = r.Push(&git.PushOptions{
114 114
 		Auth: auth,
115 115
 	})
116
+
117
+	if err == git.NoErrAlreadyUpToDate {
118
+		return nil
119
+	}
120
+
121
+	return err
116 122
 }