Skip to content

Commit

Permalink
Fix messes up shell out call
Browse files Browse the repository at this point in the history
  • Loading branch information
PEZ committed Nov 5, 2024
1 parent 875397b commit 3fac61b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/publish.clj
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@

(defn tag [version dry-run?]
(println "Tagging with version" version)
util/throw-if-error)
(util/sh dry-run?
"git" "tag"
"-a" (str "v" version)
"-m" (str "Version " version)))

(defn push [dry-run?]
(println "Pushing")
Expand Down

0 comments on commit 3fac61b

Please sign in to comment.