forked from iFurySt/open-browser-use
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (21 loc) · 677 Bytes
/
Copy pathMakefile
File metadata and controls
29 lines (21 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
PROJECT ?=
SLUG ?=
.PHONY: init check-docs check-repo ci release-package new-history new-plan
init:
@if [ -z "$(PROJECT)" ]; then echo "用法: make init PROJECT=项目名"; exit 1; fi
./scripts/init-project.sh "$(PROJECT)"
check-docs:
./scripts/check-docs.sh
check-repo:
./scripts/check-docs.sh
./scripts/check-repo-hygiene.sh
ci:
./scripts/ci.sh
release-package:
./scripts/release-package.sh
new-history:
@if [ -z "$(SLUG)" ]; then echo "用法: make new-history SLUG=变更名"; exit 1; fi
./scripts/new-history.sh "$(SLUG)"
new-plan:
@if [ -z "$(SLUG)" ]; then echo "用法: make new-plan SLUG=计划名"; exit 1; fi
./scripts/new-exec-plan.sh "$(SLUG)"