We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64799aa commit c873f83Copy full SHA for c873f83
src/main/clojure/clojure/tools/gitlibs/impl.clj
@@ -141,8 +141,8 @@
141
(throw (IOException. (str "Prefix not unique: " prefix))))))))
142
143
(defn tags
144
- [git-dir opts]
145
- (let [{:keys [exit out err] :as ret} (runproc opts "git" "--git-dir" git-dir "tag")]
+ [git-dir]
+ (let [{:keys [exit out err] :as ret} (run-git "--git-dir" git-dir "tag")]
146
(when-not (zero? exit)
147
(throw (ex-info (format "Unable to get tags %s%n%s" git-dir err) ret)))
148
- (remove str/blank? (str/split-lines out))))
+ (remove str/blank? (str/split-lines out))))
0 commit comments