Browse Source

Add silent mode for documentation generation

master
Maxim Likhachev 6 years ago
parent
commit
d238d8bc11
  1. 5
      Makefile

5
Makefile

@ -1,10 +1,13 @@ @@ -1,10 +1,13 @@
ANSIBLE = /usr/local/opt/ansible/bin/ansible-playbook
all: doc local
all: doc_silent local
doc:
scripts/doc.sh | tee README.md
doc_silent:
scripts/doc.sh > README.md
local:
$(ANSIBLE) --connection=local --ask-become-pass --inventory localhost, --limit localhost playbook.yml

Loading…
Cancel
Save