awesome-devops/tasks.py

10 lines
156 B
Python
Raw Permalink Normal View History

2019-11-26 21:54:52 +00:00
import os
from invoke import task, call
@task
def build(c):
"""Build the website"""
c.run("cp README.md docs/index.md")
c.run("mkdocs build")