Add support for Debian in apt_repository
This commit is contained in:
parent
b030d787fd
commit
41422e852c
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ def main():
|
||||||
|
|
||||||
cmd = '%s %s' % (add_apt_repository, repo)
|
cmd = '%s %s' % (add_apt_repository, repo)
|
||||||
|
|
||||||
if float(platform.dist()[1]) >= 11.10:
|
if platform.dist()[0] == 'debian' or float(platform.dist()[1]) >= 11.10:
|
||||||
cmd = cmd + ' -y'
|
cmd = cmd + ' -y'
|
||||||
|
|
||||||
rc, out, err = _run(cmd)
|
rc, out, err = _run(cmd)
|
||||||
|
|
Loading…
Reference in a new issue