mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
parent
a576796291
commit
aaa6b55bf7
1 changed files with 3 additions and 4 deletions
|
@ -510,14 +510,13 @@ def checkupdates_app(app):
|
||||||
logging.warn('Invalid auto update mode "' + mode + '" on ' + app.id)
|
logging.warn('Invalid auto update mode "' + mode + '" on ' + app.id)
|
||||||
|
|
||||||
if commitmsg:
|
if commitmsg:
|
||||||
metadatapath = os.path.join('metadata', app.id + '.txt')
|
metadata.write_metadata(app.metadatapath, app)
|
||||||
metadata.write_metadata(metadatapath, app)
|
|
||||||
if options.commit:
|
if options.commit:
|
||||||
logging.info("Commiting update for " + metadatapath)
|
logging.info("Commiting update for " + app.metadatapath)
|
||||||
gitcmd = ["git", "commit", "-m", commitmsg]
|
gitcmd = ["git", "commit", "-m", commitmsg]
|
||||||
if 'auto_author' in config:
|
if 'auto_author' in config:
|
||||||
gitcmd.extend(['--author', config['auto_author']])
|
gitcmd.extend(['--author', config['auto_author']])
|
||||||
gitcmd.extend(["--", metadatapath])
|
gitcmd.extend(["--", app.metadatapath])
|
||||||
if subprocess.call(gitcmd) != 0:
|
if subprocess.call(gitcmd) != 0:
|
||||||
raise FDroidException("Git commit failed")
|
raise FDroidException("Git commit failed")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue