mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
13 lines
187 B
Bash
Executable file
13 lines
187 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ ! -e ~/local/.fixtures-loaded ]; then
|
|
echo "Loading fixtures..."
|
|
clojure -Adev -X:fn-fixtures
|
|
touch ~/local/.fixtures-loaded
|
|
fi
|
|
|
|
clojure -m app.main
|
|
|
|
|