mirror of https://github.com/docker/cli.git
Merge pull request #1247 from marcov/make-help
Allow running `make help` without out-of-container warning
This commit is contained in:
commit
7f853fee87
|
@ -3,7 +3,7 @@ set -eu
|
||||||
|
|
||||||
target="${1:-}"
|
target="${1:-}"
|
||||||
|
|
||||||
if [[ -z "${DISABLE_WARN_OUTSIDE_CONTAINER:-}" ]]; then
|
if [[ "$target" != "help" && -z "${DISABLE_WARN_OUTSIDE_CONTAINER:-}" ]]; then
|
||||||
(
|
(
|
||||||
echo
|
echo
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in New Issue