1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-18 11:19:56 +00:00
This commit is contained in:
Calvin Rose 2020-05-19 18:41:17 -04:00
parent b72845609f
commit bef51fe9ff

4
jpm
View File

@ -658,8 +658,6 @@ int main(int argc, const char **argv) {
(or (os/getenv "JANET_GIT") (pslurp "where git"))
(os/getenv "JANET_GIT" "git"))))
(if is-win (pslurp "where git") "git"))
(defn uninstall
"Uninstall bundle named name"
[name]
@ -969,7 +967,7 @@ int main(int argc, const char **argv) {
(print "generating " manifest "...")
(mkdir manifests)
(def sha (pslurp (string "\"" (git-path) "\" rev-parse HEAD")))
(def url (pslurp (string "\"" (git-path) "\" remote get-url origin"))
(def url (pslurp (string "\"" (git-path) "\" remote get-url origin")))
(def man
{:sha (if-not (empty? sha) sha)
:repo (if-not (empty? url) url)