Merge #38 style: use constant styles in .bash*

This commit is contained in:
Siteshwar Vashisht 2023-04-11 11:13:47 +00:00
commit 64201f5de1
2 changed files with 8 additions and 10 deletions

View File

@ -6,8 +6,7 @@ if [ -f /etc/bashrc ]; then
fi fi
# User specific environment # User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]] if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]; then
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH" PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi fi
export PATH export PATH
@ -23,5 +22,4 @@ if [ -d ~/.bashrc.d ]; then
fi fi
done done
fi fi
unset rc unset rc