aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc')
-rw-r--r--bash/bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bashrc b/bash/bashrc
index 7952358c..c270fdfd 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -1,5 +1,5 @@
# Don't do anything if not running interactively
-if [[ -z "$PS1" ]]; then
+if [[ -z $PS1 ]]; then
return
fi
@@ -32,7 +32,7 @@ if [[ -r /etc/bash_completion ]]; then
fi
# Load any supplementary scripts
-if [[ -d "$HOME/.bashrc.d" ]]; then
+if [[ -d $HOME/.bashrc.d ]]; then
for file in "$HOME/.bashrc.d"/*; do
source "$file"
done