Update manifest location
This commit is contained in:
parent
a817885230
commit
97ad824082
1 changed files with 2 additions and 2 deletions
|
|
@ -97,12 +97,12 @@
|
||||||
|
|
||||||
(defn github-url [qsym version]
|
(defn github-url [qsym version]
|
||||||
(format
|
(format
|
||||||
"https://raw.githubusercontent.com/babashka/pod-manifests/master/%s/%s.edn"
|
"https://raw.githubusercontent.com/babashka/pod-manifests/master/manifests/%s/%s/manifest.edn"
|
||||||
qsym version))
|
qsym version))
|
||||||
|
|
||||||
(defn pod-manifest
|
(defn pod-manifest
|
||||||
[qsym version force?]
|
[qsym version force?]
|
||||||
(let [f (io/file @pod-manifests-dir (str qsym) (str version ".edn"))]
|
(let [f (io/file @pod-manifests-dir (str qsym) (str version) "manifest.edn")]
|
||||||
(if (and (not force?)
|
(if (and (not force?)
|
||||||
(.exists f))
|
(.exists f))
|
||||||
(edn/read-string (slurp f))
|
(edn/read-string (slurp f))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue