Skip to content

Commit 51b00f9

Browse files
authored
Merge pull request #158 from tiborvass/fix-manpages-script
Fix manpages script
2 parents ed5b663 + dc81def commit 51b00f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ vendor: vendor.conf
4747
## generate man pages from go source and markdown
4848
.PHONY: manpages
4949
manpages:
50-
scripts/dos/generate-man.sh
50+
scripts/docs/generate-man.sh
5151

5252
## generate documentation YAML files consumed by docs repo
5353
.PHONY: yamldocs

scripts/docs/generate-man.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ MD2MAN_COMMIT=$(grep -F "$MD2MAN_REPO" vendor.conf | cut -d' ' -f2)
1818
)
1919

2020
# Generate man pages from cobra commands
21-
go build -o /tmp/gen-manpages ./man
21+
go build -o /tmp/gen-manpages github.com/docker/cli/man
2222
/tmp/gen-manpages --root . --target ./man/man1
2323

2424
# Generate legacy pages from markdown

0 commit comments

Comments
 (0)