Skip to content

Commit

Permalink
Add a few comments tot he fab file.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjumbewu committed Jun 25, 2011
1 parent c07652e commit fa590b4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fabfile.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
from fabric.api import local

def clean_compiled():
"""Removed the compiled Python files"""
local(r'rm -f `find . -name \*.pyc`')
local(r'rm -f `find . -name \*.pyo`')

def clean_temp():
"""Clean up the temporary files"""
local(r'rm -f `find . -name \*~`')

def clean():
Expand Down

0 comments on commit fa590b4

Please sign in to comment.