dockerTools: rsync contents with -keep-dirlinks
This commit is contained in:
parent
8f63cc6d25
commit
186ed3bf8f
@ -247,7 +247,7 @@ rec {
|
||||
echo "Adding contents..."
|
||||
for item in $contents; do
|
||||
echo "Adding $item"
|
||||
rsync -a $item/ layer/
|
||||
rsync -ak $item/ layer/
|
||||
done
|
||||
else
|
||||
echo "No contents to add to layer."
|
||||
@ -310,7 +310,7 @@ rec {
|
||||
echo "Adding contents..."
|
||||
for item in ${toString contents}; do
|
||||
echo "Adding $item..."
|
||||
rsync -a $item/ layer/
|
||||
rsync -ak $item/ layer/
|
||||
done
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user