fix(git): set core.quotepath=false

This commit is contained in:
Andelf
2022-12-29 21:19:37 +08:00
parent c0071e85ad
commit 56b2379ce4

View File

@@ -98,7 +98,9 @@
(defn commit!
[message]
(run-git! #js ["commit" "-m" message]))
(p/do!
(run-git! #js ["config" "core.quotepath" "false"])
(run-git! #js ["commit" "-m" message])))
(defn add-all-and-commit!
([]