Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove prepare_release from fabfile
Wrong and not useful to me even if fixed.
  • Loading branch information
mwiencek committed Dec 14, 2015
1 parent 038735e commit a8cf67c
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions fabfile.py
Expand Up @@ -43,18 +43,6 @@ def pot():
commit_message = prompt("Commit message", default='Update pot files using current code and production database.')
local("git commit -m '%s'" % (commit_message))

def prepare_release():
"""
Prepare for a new release.
"""
no_local_changes()
local("git checkout beta")
local("git pull --ff-only origin beta")
local("git checkout master")
local("git pull --ff-only origin master")
local("git merge beta")
local("git push origin master")

def no_local_changes():
# The exit code of these will be 0 if there are no changes.
# If there are changes, then the author should fix his damn code.
Expand Down

0 comments on commit a8cf67c

Please sign in to comment.