You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The existing command used is `cp -r -T -- src_dir dst_dir`. But
-T doesn't work on Mac.
This commit changes it to `cp -r src_dir/. dst_dir`.
- Appending the `.` has the same effect as -T: copy the contents of
`src_dir` without copy `src_dir` itself.
- Also, -R is POSIX but -r is not.
0 commit comments