Fix SConstruct indentation bug in CopyTree

This commit is contained in:
Ali Mashtizadeh 2022-12-10 01:07:35 -05:00
parent 19b1bf216f
commit 54e9da89c5

View File

@ -123,17 +123,17 @@ def CopyTree(dst, src, env):
for f in os.listdir(src):
srcPath = os.path.join(src, f)
dstPath = os.path.join(dst, f)
if f.startswith("."):
# Ignore hidden files
pass
elif os.path.isdir(srcPath):
if not os.path.exists(dstPath):
os.makedirs(dstPath)
DirCopyHelper(srcPath, dstPath)
else:
env.Command(dstPath, srcPath, Copy("$TARGET", "$SOURCE"))
if (not os.path.exists(dst)):
os.makedirs(dst)
if f.startswith("."):
# Ignore hidden files
pass
elif os.path.isdir(srcPath):
if not os.path.exists(dstPath):
os.makedirs(dstPath)
DirCopyHelper(srcPath, dstPath)
else:
env.Command(dstPath, srcPath, Copy("$TARGET", "$SOURCE"))
if (not os.path.exists(dst)):
os.makedirs(dst)
DirCopyHelper(src, dst)
# XXX: Hack to support clang static analyzer