dockerTools: rsync contents with -keep-dirlinks

This commit is contained in:
Lazar Bodor 2016-11-24 12:38:18 +11:00
parent 8f63cc6d25
commit 186ed3bf8f

View file

@ -247,7 +247,7 @@ rec {
echo "Adding contents..." echo "Adding contents..."
for item in $contents; do for item in $contents; do
echo "Adding $item" echo "Adding $item"
rsync -a $item/ layer/ rsync -ak $item/ layer/
done done
else else
echo "No contents to add to layer." echo "No contents to add to layer."
@ -310,7 +310,7 @@ rec {
echo "Adding contents..." echo "Adding contents..."
for item in ${toString contents}; do for item in ${toString contents}; do
echo "Adding $item..." echo "Adding $item..."
rsync -a $item/ layer/ rsync -ak $item/ layer/
done done
''; '';