mirror of
https://github.com/penpot/penpot.git
synced 2025-02-13 18:48:37 -05:00
15 lines
226 B
Text
15 lines
226 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ ! -e ~/local/.fixtures-loaded ]; then
|
||
|
echo "Loading fixtures..."
|
||
|
clojure -Adev -m uxbox.fixtures
|
||
|
touch ~/local/.fixtures-loaded
|
||
|
fi
|
||
|
|
||
|
clojure -J-XX:-OmitStackTraceInFastThrow -m uxbox.main
|
||
|
|
||
|
|
||
|
|