summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
authorunwox <me@unwox.com>2025-10-13 23:10:38 +0600
committerunwox <me@unwox.com>2025-10-13 23:48:17 +0600
commit7f6c204322aa13dd8a9760b311955fc4b9a92637 (patch)
tree0c1d66d123398dacc0851b1c1589a7e3730761f5 /run.sh
parent5cf21fcb8c91896bb2b889dd4a90cc0b2ef3e9e5 (diff)
add simple filtering
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run.sh b/run.sh
index 235fcd6..2b11a1f 100755
--- a/run.sh
+++ b/run.sh
@@ -9,12 +9,12 @@ usage () {
serve () {
echo "running in jit"
- go run -tags jit ../. -n ${1:-1} bin/serve.fnl
+ go run -tags jit,fts5 ../. -n ${1:-1} bin/serve.fnl
}
debug () {
echo "running debug version in jit"
- go run -tags jit ../. -n ${1:-1} -D bin/serve.fnl
+ go run -tags jit,fts5 ../. -n ${1:-1} -D bin/serve.fnl
}
deploy () {