File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -203,8 +203,8 @@ def _tweak_settings(self):
203
203
204
204
# Disable the usersandbox feature, it's not working well inside a
205
205
# docker container.
206
- self .execute ("echo FEATURES=\\ \" {}\\ \" "
207
- ">> /etc/portage/make.conf" . format ( features ) )
206
+ self .execute (f "echo FEATURES=\\ \" { features } \\ \" "
207
+ ">> /etc/portage/make.conf" )
208
208
209
209
self .execute (("echo MAKEOPTS=\\ \" -j%d\\ \" " %
210
210
(options .options .threads )) +
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ def parse_commandline(args):
19
19
help = "The package atom(s) to install" ,
20
20
nargs = "+" ,
21
21
action = "append" )
22
+ parser .add_argument (
23
+ "--refresh-manifest" ,
24
+ help = "Refresh the package manifest before installing" ,
25
+ action = "store_true"
26
+ )
22
27
parser .add_argument (
23
28
"--binhost" ,
24
29
help = "Binhost URI" )
You can’t perform that action at this time.
0 commit comments