1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/usr/env/python
import os
import os.path
from subprocess import call
if __name__ == "__main__":
apps_dir = os.path.abspath('.')
for app_name in os.listdir(apps_dir):
app_dir = os.path.abspath(os.path.join(apps_dir, app_name))
git_path = os.path.join(app_dir, '.git')
svn_path = os.path.join(app_dir, '.svn')
if os.path.lexists(svn_path):
print "Updating svn %s" % app_dir
os.chdir(app_dir)
call(['svn', 'update'])
elif os.path.lexists(git_path):
print "Updating git %s" % app_dir
os.chdir(app_dir)
call(['git', 'pull'])
else:
continue
|
More like this
- Update All Apps to Latest Revision by dedaluz 4 years, 9 months ago
- Update All Apps to Latest Revision by izibi 4 years, 10 months ago
- update-django: Update your django git branches. by telenieko 4 years, 6 months ago
- Update applications by alem0lars 2 years, 10 months ago
- django-mptt enabled replacement for SelectBox.js by anentropic 3 years, 6 months ago
Comments
Subversion has an "externals" facility that works well in this situation: simply define all your external apps (even Django itself, perhaps) in
svn:externals, then ansvn upwill pull all the latest versions. (You can also lock a specific revision.)I think
githas something similar, but I don't know how it works.#
Thanks! been wanting this for sometime
#
@kcarnold: yes, but with svn:externals you will always use the most recent version, not the one you've tested against. Have a look at http://piston.rubyforge.org/
#
@kcarnold: That's a really great solution when all of your applications are within a subversion project, and we do it that way for the Pinax project. That being said, I like to keep a separate global directory just for Django apps, and this script addresses that particular use case.
#
Great snippet, but is it possible to add Mercurial support?
The update command is
hg -u pull#
Nice trick, but I'm pretty sure that your
envusage is wrong – it's supposed to be something like this:#!/usr/bin/env python#
More up-to-date version of file at http://djangosnippets.org/snippets/928/
Includes Mercurial etc.
#