update vendor
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
19a32db84d
commit
94d1cfbfbf
10501 changed files with 2307943 additions and 29279 deletions
18
vendor/github.com/docker/cli/scripts/warn-outside-container
generated
vendored
Executable file
18
vendor/github.com/docker/cli/scripts/warn-outside-container
generated
vendored
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
set -eu
|
||||
|
||||
target="${1:-}"
|
||||
|
||||
if [[ "$target" != "help" && -z "${DISABLE_WARN_OUTSIDE_CONTAINER:-}" ]]; then
|
||||
(
|
||||
echo
|
||||
echo
|
||||
echo "WARNING: you are not in a container."
|
||||
echo "Use \"make -f docker.Makefile $target\" or set"
|
||||
echo "DISABLE_WARN_OUTSIDE_CONTAINER=1 to disable this warning."
|
||||
echo
|
||||
echo "Press Ctrl+C now to abort."
|
||||
echo
|
||||
) >&2
|
||||
sleep 10
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue