From a72a6e7c72143bdc5b88e8143ccf784563414030 Mon Sep 17 00:00:00 2001 From: Abhinav1997 Date: Sun, 18 Oct 2015 20:25:48 +0200 Subject: [PATCH] envsetup: Show error when supplied dir isn't present with mmm When a directory isn't present with mmm, don't show "No Android.mk present", rather show that the directory isn't present Change-Id: I7259a60012c6f30c470daa60d5a5097d01ffc4c7 Signed-off-by: Abhinav1997 --- envsetup.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/envsetup.sh b/envsetup.sh index 2ff83f77b..c8152b695 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -754,7 +754,12 @@ function mmm() case $DIR in showcommands | snod | dist | *=*) ARGS="$ARGS $DIR";; GET-INSTALL-PATH) GET_INSTALL_PATH=$DIR;; - *) echo "No Android.mk in $DIR."; return 1;; + *) if [ -d $DIR ]; then + echo "No Android.mk in $DIR."; + else + echo "Couldn't locate the directory $DIR"; + fi + return 1;; esac fi done