summaryrefslogtreecommitdiffstats
path: root/envsetup.sh
diff options
context:
space:
mode:
authorEmilio López <turl@tuxfamily.org>2013-11-03 13:05:43 -0300
committerAdnan Begovic <adnan@cyngn.com>2015-10-06 16:28:39 -0700
commit7ff9caac6cf42387c4f9a61a5a1896fa4c9ef810 (patch)
treea185a0bc1100e08ab6e9ac2383fd81468bec97c7 /envsetup.sh
parentda3c78aa30f70e9bdb450d7a711d7d3c79527865 (diff)
downloadbuild-7ff9caac6cf42387c4f9a61a5a1896fa4c9ef810.zip
build-7ff9caac6cf42387c4f9a61a5a1896fa4c9ef810.tar.gz
build-7ff9caac6cf42387c4f9a61a5a1896fa4c9ef810.tar.bz2
envsetup: Mark zsh as compatible
Basic functionality has been tested on zsh 5.0.2 and has been found to work correctly. Change-Id: I02e5e3bedf56b43104c280d9737ae7b334357643
Diffstat (limited to 'envsetup.sh')
-rw-r--r--envsetup.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/envsetup.sh b/envsetup.sh
index 5e60dd9..5d3ab3e 100644
--- a/envsetup.sh
+++ b/envsetup.sh
@@ -2221,8 +2221,10 @@ if [ "x$SHELL" != "x/bin/bash" ]; then
case `ps -o command -p $$` in
*bash*)
;;
+ *zsh*)
+ ;;
*)
- echo "WARNING: Only bash is supported, use of other shell would lead to erroneous results"
+ echo "WARNING: Only bash and zsh are supported, use of other shell may lead to erroneous results"
;;
esac
fi