Skip to content

Instantly share code, notes, and snippets.

@szastupov
Created July 17, 2015 19:34
Show Gist options
  • Save szastupov/0e536344849d42bd8a7d to your computer and use it in GitHub Desktop.
Save szastupov/0e536344849d42bd8a7d to your computer and use it in GitHub Desktop.
import os
from fabric.api import *
CWD=os.path.basename(os.getcwd())
def deploy(bot=CWD):
with cd("/home/stepan/%s" % bot):
run("git pull")
run("git submodule update")
sudo("systemctl restart %s" % bot)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment