Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ebuildtester/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ def _tweak_settings(self):

# Disable the usersandbox feature, it's not working well inside a
# docker container.
self.execute("echo FEATURES=\\\"{}\\\" "
">> /etc/portage/make.conf".format(features))
self.execute(f"echo FEATURES=\\\"{features}\\\" "
">> /etc/portage/make.conf")

self.execute(("echo MAKEOPTS=\\\"-j%d\\\" " %
(options.options.threads)) +
Expand Down
5 changes: 5 additions & 0 deletions ebuildtester/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ def parse_commandline(args):
help="The package atom(s) to install",
nargs="+",
action="append")
parser.add_argument(
"--refresh-manifest",
help="Refresh the package manifest before installing",
action="store_true"
)
parser.add_argument(
"--binhost",
help="Binhost URI")
Expand Down