mirror of
https://github.com/penpot/penpot.git
synced 2026-02-13 15:13:03 +00:00
14 lines
186 B
Bash
Executable File
14 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
if [ ! -e ~/.fixtures-loaded ]; then
|
|
echo "Loading fixtures..."
|
|
clojure -Adev -X:fn-fixtures
|
|
touch ~/.fixtures-loaded
|
|
fi
|
|
|
|
clojure -A:dev -M -m app.main
|
|
|
|
|