From 13041f215ce67309f47ea0b2bb484f4ead7d9eb9 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Mon, 8 May 2017 10:49:59 -0700 Subject: [PATCH] Fix device for vendor target Signed-off-by: Eli Uriegas Upstream-commit: 2792fbce0f7c50c746f58ebc746999d388a52a06 Component: cli --- components/cli/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/cli/Makefile b/components/cli/Makefile index 017cb55006..5b2d069c4e 100644 --- a/components/cli/Makefile +++ b/components/cli/Makefile @@ -29,9 +29,9 @@ cross: clean vendor: vendor.conf @vndr 2> /dev/null - @if [ "`git status --porcelain -- vendor 2>/dev/nul`" ]; then \ + @if [ "`git status --porcelain -- vendor 2>/dev/null`" ]; then \ echo; echo "vendoring is wrong. These files were changed:"; \ - echo; git status --porcelain -- vendor 2>/dev/nul; \ + echo; git status --porcelain -- vendor 2>/dev/null; \ echo; exit 1; \ fi;