Skip to content
Snippets Groups Projects
Commit 798c96e3 authored by samuela's avatar samuela
Browse files

`cp -r` is deprecated on

BSD/macOS. `cp -R` instead.
parent 237dc425
No related branches found
No related tags found
1 merge request!230`cp -r` is deprecated on BSD/macOS. Use `cp -R` instead.
...@@ -40,6 +40,6 @@ function recipe_clean { ...@@ -40,6 +40,6 @@ function recipe_clean {
function recipe_stage { function recipe_stage {
dest="$(realpath $1)" dest="$(realpath $1)"
mkdir -p "$1/ssl" mkdir -p "$1/ssl"
cp -rL build/etc/ssl/certs "$1/ssl" cp -RL build/etc/ssl/certs "$1/ssl"
skip=1 skip=1
} }
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