Skip to content
Snippets Groups Projects
Commit 4a71973e authored by Will Angenent's avatar Will Angenent
Browse files

Use POSIX -R instead of -r in copy for better portability

In MacOS, -r will exit with 1 if any broken symlinks are
encountered. -r is "implementation-defined" according to POSIX.
-R is well defined.
parent 5656bb86
No related branches found
No related tags found
No related merge requests found
...@@ -178,7 +178,7 @@ function op { ...@@ -178,7 +178,7 @@ function op {
then then
mkdir "${COOKBOOK_BUILD}" mkdir "${COOKBOOK_BUILD}"
else else
cp -rp source "${COOKBOOK_BUILD}" cp -Rp source "${COOKBOOK_BUILD}"
fi fi
for patch in *.patch for patch in *.patch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment