No more need for the fabfile, everything uses invoke now

This commit is contained in:
Jeff Forcier 2014-03-03 18:09:10 -08:00
parent 83f09e634f
commit 1038cfe7dd
1 changed files with 0 additions and 13 deletions

13
fabfile.py vendored
View File

@ -1,13 +0,0 @@
from fabric.api import task, sudo, env
from fabric.contrib.project import rsync_project
@task
def upload_docs():
target = "/var/www/paramiko.org"
staging = "/tmp/paramiko_docs"
sudo("mkdir -p %s" % staging)
sudo("chown -R %s %s" % (env.user, staging))
sudo("rm -rf %s/*" % target)
rsync_project(local_dir='docs/', remote_dir=staging, delete=True)
sudo("cp -R %s/* %s/" % (staging, target))