File tree 4 files changed +10
-6
lines changed
4 files changed +10
-6
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
- .shellcheck-0.9 .0.pkg
1
+ .shellcheck-0.10 .0.pkg
Original file line number Diff line number Diff line change 1
- #! /bin/bash -euo pipefail
1
+ #! /bin/bash
2
+ set -euo pipefail
2
3
3
- cd " $( dirname ${BASH_SOURCE} ) "
4
+ cd " $( dirname " ${BASH_SOURCE[@]} " ) "
4
5
5
6
if [ $# -eq 0 ]; then
6
7
trap ' trap " " SIGTERM; kill 0; wait' SIGINT SIGTERM
12
13
13
14
case " $1 " in
14
15
go)
15
- exec env $( cat .env | xargs ) go run github.com/cespare/reflex \
16
- -d none -s -- go run ./cmd/veun serve
16
+ # shellcheck disable=SC2046,SC2002
17
+ exec env $( cat .env | xargs ) go run github.com/cespare/reflex -d none -s -- go run ./cmd/veun serve
17
18
;;
18
19
tailwind)
19
20
exec bun run tailwindcss -i static/input.css -o static/styles.dev.css -w
Original file line number Diff line number Diff line change 1
- #! /bin/bash -euo pipefail
1
+ #! /bin/bash
2
+ set -euo pipefail
2
3
3
4
bun run tailwindcss -i cmd/veun/static/input.css -o cmd/veun/static/styles.css --minify
5
+
6
+ # shellcheck disable=SC2046,SC2002
4
7
exec env $( cat .env | xargs) go run ./cmd/veun serve --environment=prod
You can’t perform that action at this time.
0 commit comments