浏览代码

Fix wrong call to HasPrefix

父节点
当前提交
c680c2a359
签署人:: Brendan Abolivier <contact@brendanabolivier.com> GPG 密钥 ID: 8EF1500759F70623
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      src/git/git.go

+ 2
- 2
src/git/git.go 查看文件

75
 
75
 
76
 	// go-git doesn't have an error variable for "non-fast-forward update", so
76
 	// go-git doesn't have an error variable for "non-fast-forward update", so
77
 	// this is the only way to detect it
77
 	// this is the only way to detect it
78
-	if strings.HasPrefix("non-fast-forward update", err.Error()) {
78
+	if strings.HasPrefix(err.Error(), "non-fast-forward update") {
79
 		return r, nil
79
 		return r, nil
80
 	}
80
 	}
81
 
81
 
108
 
108
 
109
 	// go-git doesn't have an error variable for "non-fast-forward update", so
109
 	// go-git doesn't have an error variable for "non-fast-forward update", so
110
 	// this is the only way to detect it
110
 	// this is the only way to detect it
111
-	if strings.HasPrefix("non-fast-forward update", err.Error()) {
111
+	if strings.HasPrefix(err.Error(), "non-fast-forward update") {
112
 		return nil
112
 		return nil
113
 	}
113
 	}
114
 
114