diff options
-rw-r--r-- | pym/_emerge/actions.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 0908c2ca2..c75120208 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2386,9 +2386,10 @@ def action_sync(settings, trees, mtimedb, myopts, myaction): "!!! existing '%s' directory; exiting.\n" % myportdir) sys.exit(1) del e - if portage.spawn_bash("cd %s; exec cvs -z0 -d %s co -P gentoo-x86" % \ + if portage.process.spawn_bash( + "cd %s; exec cvs -z0 -d %s co -P gentoo-x86" % \ (portage._shell_quote(cvsdir), portage._shell_quote(cvsroot)), - settings, free=1): + **spawn_kwargs) != os.EX_OK: print("!!! cvs checkout error; exiting.") sys.exit(1) os.rename(os.path.join(cvsdir, "gentoo-x86"), myportdir) |