1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-03-17 20:58:08 +02:00

Helper scripts for on-the-fly running chroma{,d}.

This commit is contained in:
Alec Thomas 2022-01-27 10:08:43 +11:00
parent 4ba9a05fee
commit d491f1b5c1
2 changed files with 10 additions and 0 deletions

5
bin/chroma Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
set -euo pipefail
(cd cmd/chroma ; go build -o $TMPDIR/chroma .) && exec $TMPDIR/chroma "$@"

5
bin/chromad Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
set -euo pipefail
(cd cmd/chromad ; go build -o $TMPDIR/chromad .) && exec $TMPDIR/chromad "$@"