We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d91ded8 commit fc13853Copy full SHA for fc13853
1 file changed
.github/workflows/scripts/test_init_scripts.sh
@@ -33,7 +33,7 @@ for shell in ${SHELLS[@]}; do
33
else
34
if [ "$shell" = "csh" ]; then
35
# make sure our .cshrc is empty before we begin as we will clobber it
36
- [ -f "~/.cshrc" ] && mv "~/.cshrc" "~/.cshrc_orig"
+ [ -f ~/.cshrc ] && mv ~/.cshrc ~/.cshrc_orig
37
fi
38
39
# TEST 1: Source Script and check Module Output
@@ -112,7 +112,7 @@ for shell in ${SHELLS[@]}; do
112
113
114
# Restore our .cshrc
115
- [ -f "~/.cshrc_orig" ] && mv "~/.cshrc_orig" "~/.cshrc"
+ [ -f ~/.cshrc_orig ] && mv ~/.cshrc_orig ~/.cshrc
116
117
118
0 commit comments