aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJosh Spicer <joshspicer@github.com>2023-12-07 21:49:18 +0300
committerGitHub <noreply@github.com>2023-12-07 21:49:18 +0300
commit3ea4d6bbd7864bcf7b5a91fdeeb66e4f5a6f46c0 (patch)
tree79585189b1dc389a703c8b9a1a9553a2fcd4c8c6 /test
parentdef3a41f576ceffebdff8266b41b8589a2512ac2 (diff)
Fix `.zprofile` is owned by root (#775)feature_common-utils_2.3.1
* revert behavior of sourcing .profile in .zprofile https://github.com/devcontainers/features/pull/736/files#diff-3e71c0a0669a0410f7dd0d8f2b83f3b6bf6b525d3eabd354f19f32822da669fcR460-R463 * add test * increment version * create empty .zprofile is not present, and fix test * temporarily add back .profile to .zprofile (only if file did not exist)
Diffstat (limited to 'test')
-rw-r--r--test/common-utils/configure_zsh_as_default_shell.sh2
1 files changed, 2 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 01d1522..21b1210 100644
--- a/test/common-utils/configure_zsh_as_default_shell.sh
+++ b/test/common-utils/configure_zsh_as_default_shell.sh
@@ -11,5 +11,7 @@ check "default-shell-is-zsh" bash -c "getent passwd $(whoami) | awk -F: '{ print
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'"
+check "Ensure .zprofile is owned by remoteUser" bash -c "stat -c '%U' /home/devcontainer/.zprofile | grep devcontainer"
+
# Report result
reportResults