File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 11.PHONY : schema ci
2- default : help
2+ default : run
33
4- help :
4+ help :
55 @echo " Targets:"
66 @echo " --------"
77 @echo " schema Generates the JSON schema"
8- @echo " ci Builds the site"
8+ @echo " run Runs the site"
9+ @echo " ci Builds the site (for CI)"
910
1011init :
1112 @echo " Initializing..."
@@ -17,5 +18,8 @@ schema: init
1718 @tsp compile ./typespec --output-dir ./.artifacts
1819 @mv ./.artifacts/@typespec/json-schema/OpenCLI.json ./schema.json
1920
21+ run : init
22+ @cd site && make run
23+
2024ci : init
2125 @cd site && make ci
Original file line number Diff line number Diff line change 11.PHONY : build ci
22default : run
33
4+ help :
5+ @echo " Targets:"
6+ @echo " --------"
7+ @echo " update Syncs the OpenCLI spec with the site"
8+ @echo " run Runs the site"
9+ @echo " ci Builds the site (for CI)"
10+
411update :
512 @echo " Updating contents..."
613 @./update.sh
You can’t perform that action at this time.
0 commit comments