mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Added support for bzr
This commit is contained in:
parent
9586452298
commit
4497d6c91e
2 changed files with 11 additions and 2 deletions
10
build.py
10
build.py
|
@ -120,6 +120,10 @@ for app in apps:
|
|||
if subprocess.call(['hg', 'clone', repo, build_dir]) !=0:
|
||||
print "Hg clone failed"
|
||||
sys.exit(1)
|
||||
elif app['repotype'] == 'bzr':
|
||||
if subprocess.call(['bzr', 'branch', repo, build_dir]) !=0:
|
||||
print "Bzr branch failed"
|
||||
sys.exit(1)
|
||||
else:
|
||||
print "Invalid repo type " + app['repotype'] + " in " + app['id']
|
||||
sys.exit(1)
|
||||
|
@ -163,7 +167,11 @@ for app in apps:
|
|||
cwd=build_dir) != 0:
|
||||
print "Hg checkout failed"
|
||||
sys.exit(1)
|
||||
|
||||
elif app['repotype'] == 'bzr':
|
||||
if subprocess.call(['bzr', 'revert', '-r', thisbuild['commit']],
|
||||
cwd=build_dir) != 0:
|
||||
print "Bzr revert failed"
|
||||
sys.exit(1)
|
||||
else:
|
||||
print "Invalid repo type " + app['repotype']
|
||||
sys.exit(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue