aboutsummaryrefslogtreecommitdiff
path: root/test/common-utils/configure_zsh_as_default_shell.sh
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2023-10-28 01:47:26 +0300
committerGitHub <noreply@github.com>2023-10-28 01:47:26 +0300
commit719901a1b4751d5d9864d9700f56b6ecf80cc4f4 (patch)
tree1d6df5c4c37423804087645bcfe75d8aa356f81a /test/common-utils/configure_zsh_as_default_shell.sh
parent4c2c9f7b95fcc160e275c1624cec02a9bba25bdb (diff)
[common-utils] Bug fix: zsh missing rc snippet (#736)feature_common-utils_2.3.0
* [common-utils] Bug fix: zsp missing rc snippet * condion rc snippet * fix bug * remove debugging step
Diffstat (limited to 'test/common-utils/configure_zsh_as_default_shell.sh')
-rw-r--r--test/common-utils/configure_zsh_as_default_shell.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/common-utils/configure_zsh_as_default_shell.sh b/test/common-utils/configure_zsh_as_default_shell.sh
index 6a569a9..01d1522 100644
--- a/test/common-utils/configure_zsh_as_default_shell.sh
+++ b/test/common-utils/configure_zsh_as_default_shell.sh
@@ -9,6 +9,7 @@ source dev-container-features-test-lib
check "default-shell-is-zsh" bash -c "getent passwd $(whoami) | awk -F: '{ print $7 }' | grep '/bin/zsh'"
# check it overrides the ~/.zshrc with default dev containers template
check "default-zshrc-is-dev-container-template" bash -c "cat ~/.zshrc | grep ZSH_THEME | grep devcontainers"
+check "zsh-path-contains-local-bin" zsh -l -c "echo $PATH | grep '/home/devcontainer/.local/bin'"
# Report result
reportResults