mirror of
https://github.com/penpot/penpot.git
synced 2025-07-19 19:07:18 +02:00
Add builtin lein script.
This commit is contained in:
parent
dc83e23ed1
commit
14a1746ba5
3 changed files with 407 additions and 6 deletions
|
@ -1,2 +1,7 @@
|
|||
#!/bin/bash
|
||||
rlwrap lein trampoline run -m clojure.main scripts/figwheel.clj
|
||||
#!/usr/bin/env bash
|
||||
RLWRAP=`which rlwrap`
|
||||
if [ $? != 0 ]; then
|
||||
RLWRAP="";
|
||||
fi
|
||||
|
||||
$RLWRAP lein trampoline run -m clojure.main scripts/figwheel.clj || exit 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue