From c3eb1079ea1ee513422cfe16d4c5574a2c1ee7a5 Mon Sep 17 00:00:00 2001 From: Abhinav1997 Date: Sun, 18 Oct 2015 19:49:13 +0200 Subject: 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(-) (limited to 'envsetup.sh') diff --git a/envsetup.sh b/envsetup.sh index 82b58e6..2f019f9 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -922,7 +922,12 @@ function mmm() case $DIR in showcommands | snod | dist | incrementaljavac | *=*) 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 -- cgit v1.1