From 60bdd8cec155a79885868832ae34d2a8d5190a05 Mon Sep 17 00:00:00 2001 From: Jeremy Orem Date: Thu, 4 Aug 2011 14:15:19 -0700 Subject: [PATCH] Fix checkin_changes. --- scripts/update/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update/update.py b/scripts/update/update.py index e730879f521..c9137ab3c28 100644 --- a/scripts/update/update.py +++ b/scripts/update/update.py @@ -80,7 +80,6 @@ def install_cron(ctx): @hostgroups(settings.WEB_HOSTGROUP, remote_kwargs={'ssh_key': settings.SSH_KEY}) def deploy_app(ctx): - checkin_changes() ctx.remote(settings.REMOTE_UPDATE_SCRIPT) ctx.remote("/bin/touch %s" % settings.REMOTE_WSGI) @@ -96,6 +95,7 @@ def update_celery(ctx): @task def deploy(ctx): install_cron() + checkin_changes() deploy_app() update_celery()