summaryrefslogtreecommitdiffstats
path: root/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc8
1 files changed, 5 insertions, 3 deletions
diff --git a/.bashrc b/.bashrc
index d53755a..f378a33 100644
--- a/.bashrc
+++ b/.bashrc
@@ -44,6 +44,8 @@ fi
# Set DISPLAY for SSH sessions.
{ read -r DISPLAY 0<~/.xdisplay && export DISPLAY; } 2>/dev/null || :
-for f in $(run-parts --list ~/.bashrc.d); do
- . "${f}"
-done
+if ! [ -r /etc/debian_chroot ]; then
+ for f in $(run-parts --list ~/.bashrc.d); do
+ . "${f}"
+ done
+fi