mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-12 23:56:13 +01:00
do not complain about _service files
This commit is contained in:
parent
1cb627a289
commit
116fec879e
@ -4555,7 +4555,7 @@ def check_filelist_before_commit(pacs):
|
||||
p.todo = p.filenamelist + p.filenamelist_unvers
|
||||
p.todo.sort()
|
||||
for f in (f for f in p.todo if not os.path.isdir(f)):
|
||||
if p.status(f) in ('?', '!'):
|
||||
if not f.startswith('_service:') and not f.startswith('_service_') and p.status(f) in ('?', '!'):
|
||||
resp = raw_input("File `%s' is not in package meta. Would you like skip/remove/edit file lists/commit/abort? (s/r/e/c/A) "% (f, ))
|
||||
if resp in ('s', 'S'):
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user