mirror of
https://abf.rosa.ru/djam/abf-console-client-src.git
synced 2025-02-24 02:12:49 +00:00
Supress output and errors when setting maintainer of a new project for now, since only admins can set maintainers
This commit is contained in:
parent
b9b5605da3
commit
6d1261732b
1 changed files with 4 additions and 1 deletions
5
abf.py
5
abf.py
|
@ -1035,7 +1035,10 @@ def create():
|
|||
os.system("git checkout -b " + default_branch);
|
||||
os.system("git push origin " + default_branch);
|
||||
|
||||
os.system("abf update --maintainer " + login)
|
||||
# Supress output and errors for now, since only admins can set maintainers
|
||||
set_maintainer = Popen(['abf', 'update', '--maintainer', login], stdout=PIPE, stderr=PIPE)
|
||||
out, err = set_maintainer.communicate()
|
||||
# os.system("abf update --maintainer " + login)
|
||||
|
||||
# Go back to initial dir and delete temp folder
|
||||
os.chdir(curdir)
|
||||
|
|
Loading…
Add table
Reference in a new issue