mirror of
https://github.com/wmariuss/awesome-devops.git
synced 2024-10-01 00:45:35 -04:00
10 lines
156 B
Python
10 lines
156 B
Python
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")
|