Split the fabfile tasks a bit more.
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 10 Jun 2010 21:42:41 -0400 (2010-06-11) |
parents |
1aa10116faf5
|
children |
9f117cd3d2cf
|
branches/tags |
(none) |
files |
fabfile.py |
Changes
--- a/fabfile.py Thu Jun 10 21:42:26 2010 -0400
+++ b/fabfile.py Thu Jun 10 21:42:41 2010 -0400
@@ -10,9 +10,12 @@
def clean():
local('rm -rf ./deploy')
+def generate():
+ local('hyde -g -s .')
+
def regen():
clean()
- local('hyde -g -s .')
+ generate()
def serve():
local('hyde -w -s . -k')