File tree 3 files changed +5
-5
lines changed 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ root = "."
2
2
tmp_dir = " .air"
3
3
4
4
[build ]
5
- cmd = " make backend"
5
+ cmd = " make --no-print-directory backend"
6
6
bin = " gitea"
7
7
delay = 1000
8
8
include_ext = [" go" , " tmpl" ]
Original file line number Diff line number Diff line change @@ -413,11 +413,11 @@ lint-editorconfig:
413
413
414
414
.PHONY : watch
415
415
watch :
416
- bash build/watch.sh
416
+ @ bash build/watch.sh
417
417
418
418
.PHONY : watch-frontend
419
419
watch-frontend : node-check node_modules
420
- rm -rf $(WEBPACK_DEST_ENTRIES )
420
+ @ rm -rf $(WEBPACK_DEST_ENTRIES )
421
421
NODE_ENV=development npx webpack --watch --progress
422
422
423
423
.PHONY : watch-backend
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -euo pipefail
3
3
4
- make watch-frontend &
5
- make watch-backend &
4
+ make --no-print-directory watch-frontend &
5
+ make --no-print-directory watch-backend &
6
6
7
7
trap ' kill $(jobs -p)' EXIT
8
8
wait
You can’t perform that action at this time.
0 commit comments