mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
14 lines
187 B
Bash
Executable File
14 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
|
|
|
|
|