File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ root = "."
22tmp_dir = " .air"
33
44[build ]
5- cmd = " make backend"
5+ cmd = " make --no-print-directory backend"
66bin = " gitea"
77delay = 1000
88include_ext = [" go" , " tmpl" ]
Original file line number Diff line number Diff line change @@ -413,11 +413,11 @@ lint-editorconfig:
413413
414414.PHONY : watch
415415watch :
416- bash build/watch.sh
416+ @ bash build/watch.sh
417417
418418.PHONY : watch-frontend
419419watch-frontend : node-check node_modules
420- rm -rf $(WEBPACK_DEST_ENTRIES )
420+ @ rm -rf $(WEBPACK_DEST_ENTRIES )
421421 NODE_ENV=development npx webpack --watch --progress
422422
423423.PHONY : watch-backend
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -euo pipefail
33
4- make watch-frontend &
5- make watch-backend &
4+ make --no-print-directory watch-frontend &
5+ make --no-print-directory watch-backend &
66
77trap ' kill $(jobs -p)' EXIT
88wait
You can’t perform that action at this time.
0 commit comments