We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 447322f commit 50d9382Copy full SHA for 50d9382
ebuildtester/main.py
@@ -42,13 +42,15 @@ def main():
42
"--autounmask-license=y ",
43
"--autounmask-continue=y "]
44
45
- atom = Atom(" ".join(map(str, options.OPTIONS.atom)))
+ atoms = [Atom(str(a)) for a in options.OPTIONS.atom]
46
47
if options.OPTIONS.binhost:
48
- p = "{}/{}".format(atom.category, atom.package)
49
- emerge_command.append("--usepkg-exclude={}".format(p))
+ for a in atoms:
+ p = "{}/{}".format(a.category, a.package)
50
+ emerge_command.append("--usepkg-exclude={}".format(p))
51
- emerge_command.append(str(atom))
52
53
+ emerge_command.append(str(a))
54
container.execute(" ".join(["echo"] + emerge_command + ["--ask"]) +
55
" >> ~/.bash_history")
56
0 commit comments