From f61713bc805bb678ab4ca895fea65910c332dc78 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Fri, 8 Mar 2024 15:06:45 +1100 Subject: [PATCH] fixup --- .github/setup_ci.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index f950bb696638..3b330ef16aca 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -274,7 +274,8 @@ fi if [ "${TARGET}" = "tcsh" ]; then cat /etc/nsswitch.conf echo "Setting $(whoami) login shell to /usr/bin/tcsh" + getent passwd $(whoami) sudo chsh -s /usr/bin/tcsh $(whoami) - sudo nscd -i passwd - grep $(whoami) /etc/passwd + getent passwd $(whoami) + exit 1 fi