mirror of
https://github.com/penpot/penpot.git
synced 2025-02-10 00:58:26 -05:00
🐛 Fix incorrect env vars parsing on config module.
This commit is contained in:
parent
b22b77a39e
commit
1db1bd03f5
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@
|
|||
(fn [acc k v]
|
||||
(cond-> acc
|
||||
(str/starts-with? (name k) "penpot-")
|
||||
(assoc (keyword (subs (name k) 6)) v)
|
||||
(assoc (keyword (subs (name k) 7)) v)
|
||||
|
||||
(str/starts-with? (name k) "app-")
|
||||
(assoc (keyword (subs (name k) 4)) v)))
|
||||
|
|
Loading…
Add table
Reference in a new issue