Skip to content

Commit ef9a0a6

Browse files
Rowan TrollopeRowan Trollope
authored andcommitted
Refine workspace CLI ergonomics
1 parent 90715dc commit ef9a0a6

13 files changed

Lines changed: 913 additions & 164 deletions

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ help: ## Show repo-specific make targets and common variables.
3333
@printf ' %-20s %s\n' 'help' 'Show this help.'
3434
@printf ' %-20s %s\n' 'all' 'Build mount helpers and Go commands.'
3535
@printf ' %-20s %s\n' 'mount' 'Build the FUSE and NFS mount helpers.'
36-
@printf ' %-20s %s\n' 'commands' 'Build the afs and afs-control-plane binaries.'
36+
@printf ' %-20s %s\n' 'commands' 'Build the Go commands without rebuilding UI assets.'
3737
@printf ' %-20s %s\n' 'afs' 'Build the afs CLI binary.'
3838
@printf ' %-20s %s\n' 'afs-control-plane' 'Build the HTTP control-plane binary.'
3939
@printf ' %-20s %s\n' 'test' 'Run Go unit tests for the active product surfaces.'
@@ -63,8 +63,8 @@ all: mount commands
6363
mount: ## Build the FUSE and NFS mount helpers.
6464
$(MAKE) -C mount
6565

66-
commands: ## Build the afs and afs-control-plane binaries.
67-
commands: afs afs-control-plane
66+
commands: ## Build the afs and afs-control-plane binaries without rebuilding UI assets.
67+
commands: afs afs-control-plane-noui
6868

6969
afs: ## Build the afs CLI binary.
7070
go build -ldflags "$(VERSION_LDFLAGS)" -o afs ./cmd/afs

0 commit comments

Comments
 (0)