summaryrefslogtreecommitdiff
path: root/megapixels/commands/builder
diff options
context:
space:
mode:
Diffstat (limited to 'megapixels/commands/builder')
-rw-r--r--megapixels/commands/builder/build.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/megapixels/commands/builder/build.py b/megapixels/commands/builder/build.py
deleted file mode 100644
index fc4fb302..00000000
--- a/megapixels/commands/builder/build.py
+++ /dev/null
@@ -1,15 +0,0 @@
-"""
-Build the static site
-"""
-
-import click
-
-from app.builder.builder import build_site
-
-@click.command()
-@click.pass_context
-def cli(ctx):
- """Build the static site
- """
- print('Building the site...')
- build_site()