Only make directories if they don't exist.
This commit is contained in:
parent
5f64fd8fd1
commit
e5383426f8
@ -335,7 +335,9 @@ def scrubInstRoot(destdir=None, libdir='lib', arch=None):
|
|||||||
|
|
||||||
# copy in boot loader files
|
# copy in boot loader files
|
||||||
bootpath = os.path.join(destdir, 'usr', 'lib', 'anaconda-runtime', 'boot')
|
bootpath = os.path.join(destdir, 'usr', 'lib', 'anaconda-runtime', 'boot')
|
||||||
|
if not os.path.isdir(bootpath):
|
||||||
os.makedirs(bootpath)
|
os.makedirs(bootpath)
|
||||||
|
|
||||||
if arch == 'i386' or arch == 'x86_64':
|
if arch == 'i386' or arch == 'x86_64':
|
||||||
for bootfile in os.listdir(os.path.join(destdir, 'boot')):
|
for bootfile in os.listdir(os.path.join(destdir, 'boot')):
|
||||||
if bootfile.startswith('memtest'):
|
if bootfile.startswith('memtest'):
|
||||||
|
Loading…
Reference in New Issue
Block a user