make: don't preserve rsync time, conflicting with touch on generators

This commit is contained in:
Dr. Stefan Schimanski 2016-12-13 15:12:45 +01:00
parent 399da6d176
commit 036df76242

View File

@ -399,7 +399,7 @@ kube::golang::place_bins() {
if [[ -d "${full_binpath_src}" ]]; then
mkdir -p "${KUBE_OUTPUT_BINPATH}/${platform}"
find "${full_binpath_src}" -maxdepth 1 -type f -exec \
rsync -ptc {} "${KUBE_OUTPUT_BINPATH}/${platform}" \;
rsync -pc {} "${KUBE_OUTPUT_BINPATH}/${platform}" \;
fi
done
}