diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-07-07 22:15:29 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-07-07 22:15:29 -0400 |
commit | e04d55901a7b17f0ca31d23d69062ec18edf3624 (patch) | |
tree | 969163be0b84977f3a60bc0e8547dd4ba7895aee /scripts/cycle.1.py | |
parent | scripts/cycle.1.py: copy make.conf to stage1root and cleanup docs. (diff) | |
download | grs-e04d55901a7b17f0ca31d23d69062ec18edf3624.tar.gz grs-e04d55901a7b17f0ca31d23d69062ec18edf3624.tar.bz2 grs-e04d55901a7b17f0ca31d23d69062ec18edf3624.zip |
scripts/cycle.1.py: fix typo.
Diffstat (limited to 'scripts/cycle.1.py')
-rw-r--r-- | scripts/cycle.1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cycle.1.py b/scripts/cycle.1.py index 1593f74..92e8881 100644 --- a/scripts/cycle.1.py +++ b/scripts/cycle.1.py @@ -39,7 +39,7 @@ emerge_env = { 'USE' : use_flags, 'ROOT' : subchroot, 'CPU_FLAGS_X86' : cpu_flag cmd = 'emerge -bkNu1q sys-apps/baselayout' Execute(cmd, timeout=None, extra_env=emerge_env) -os.path.makedirs('/tmp/stage1root/etc/portage', mode=0o755, exist_ok=True) +os.makedirs('/tmp/stage1root/etc/portage', mode=0o755, exist_ok=True) shutil.copy('/etc/portage/make.conf', '/tmp/stage1root/etc/portage') cmd = 'emerge -bkNu1q %s' % get_blist() |