From ab6e994babaf3d37b36e34215ebef847aae912d9 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 2 Jun 2020 19:12:07 +0300 Subject: [PATCH] Makefile: add `make docs-sync` command for syncing docs contents --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index e58f74136..4e415a8d4 100644 --- a/Makefile +++ b/Makefile @@ -145,3 +145,11 @@ golangci-lint: install-golangci-lint install-golangci-lint: which golangci-lint || GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint + +docs-sync: + cp app/vmagent/README.md docs/vmagent.md + cp app/vmalert/README.md docs/vmalert.md + cp app/vmauth/README.md docs/vmauth.md + cp app/vmbackup/README.md docs/vmbackup.md + cp app/vmrestore/README.md docs/vmrestore.md + cp README.md docs/Single-server-VictoriaMetrics.md