Merge pull request #21435 from vdemeester/remove-verbose-copy-containerd

Remove the verbosity of copy_containerd
This commit is contained in:
David Calavera 2016-03-24 10:34:37 -07:00
Родитель 2b6b2e1af8 2164018d82
Коммит e88dff6bb4
1 изменённых файлов: 14 добавлений и 16 удалений

Просмотреть файл

@ -295,7 +295,6 @@ copy_containerd() {
# them available, but only if the native OS/ARCH is the same as the
# OS/ARCH of the build target
if [ "$(go env GOOS)/$(go env GOARCH)" == "$(go env GOHOSTOS)/$(go env GOHOSTARCH)" ]; then
(set -x
if [ -x /usr/local/bin/docker-runc ]; then
echo "Copying nested executables into $dir"
for file in containerd containerd-shim containerd-ctr runc; do
@ -305,7 +304,6 @@ copy_containerd() {
fi
done
fi
)
fi
}