mirror of
https://github.com/penpot/penpot.git
synced 2025-05-23 03:16:10 +02:00
🎉 Add circle CI (for backend).
This commit is contained in:
parent
240de28567
commit
b3f9c3d27e
4 changed files with 68 additions and 7 deletions
|
@ -77,8 +77,10 @@
|
|||
|
||||
(defn clean-storage
|
||||
[next]
|
||||
(fs/delete (fs/path "/tmp/penpot"))
|
||||
(next))
|
||||
(let [path (fs/path "/tmp/penpot")]
|
||||
(when (fs/exists? path)
|
||||
(fs/delete (fs/path "/tmp/penpot")))
|
||||
(next)))
|
||||
|
||||
(defn serial
|
||||
[& funcs]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue