Compare commits

..

No commits in common. "51b8138cf3bce418ea153b074ef12a3cc156e2d8" and "85cee95c2eca2d10926f09feb38f6ad77c05046b" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@ export ORIG_PS1=${PS1}
if which direnv &> /dev/null; then
update_prompt() {
if direnv status | grep -iEq 'RC allowed (true|0)'; then
if direnv status | grep -iq 'RC allowed true'; then
PS1=${DIRENV_PS1}
else
PS1=${ORIG_PS1}

View File

@ -6,6 +6,7 @@ set -ex
echo "PWD: $PWD"
# Coder dotfiles (and most other ways of doing this) will not do a recursive clone, so do that in install script.
git submodule init && git submodule update
# Match case insensitively to make things easier for this part
shopt -s nocasematch