Fix - Copy Dir ignores hidden files on macOS (#1188)
This commit is contained in:
parent
3d3d646016
commit
5c34b7136f
|
@ -90,7 +90,7 @@ def copy_dir_contents_to_dir(source, target):
|
||||||
# do something more complext for this environment.
|
# do something more complext for this environment.
|
||||||
return """\
|
return """\
|
||||||
if [[ -d "{source}" ]]; then
|
if [[ -d "{source}" ]]; then
|
||||||
cp -L -R "{source}"/* "{target}"
|
cp -L -R "{source}"/ "{target}"
|
||||||
else
|
else
|
||||||
cp -L -R "{source}" "{target}"
|
cp -L -R "{source}" "{target}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue