Skip to content

Commit

Permalink
conf
Browse files Browse the repository at this point in the history
  • Loading branch information
generalhenry committed Sep 16, 2013
1 parent 5b27378 commit ec50e0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configs/production.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
},
"dockerRegistry": "registry.runnable.com",
"harbourmaster": "http://harbourmaster.runnable.com:3000",
"harbourmaster": "http://10.0.1.243:3000",
"runnable_access_timeout": "5 seconds",
"logExpress": true,
"logErrorStack": true,
Expand Down
4 changes: 3 additions & 1 deletion fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ def checkout_latest():
"""
Pull the latest code on the specified branch.
"""
run('cd api-server; git checkout %(branch)s; git pull origin %(branch)s' % env)
with cd('api-server'):
run('git checkout %(branch)s' % env)
run('git pull origin %(branch)s' % env)

def install_requirements():
"""
Expand Down

0 comments on commit ec50e0e

Please sign in to comment.