From 328319692d805e1eb5ba889cd77650638e7acb86 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 20 Aug 2013 14:11:37 +1200 Subject: Better var names for subfile config sourcing --- bash/bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bash/bashrc') diff --git a/bash/bashrc b/bash/bashrc index 5b55cf93..d3960ea5 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -33,9 +33,9 @@ fi # Load any supplementary scripts if [[ -d $HOME/.bashrc.d ]]; then - for file in "$HOME"/.bashrc.d/*; do - source "$file" + for config in "$HOME"/.bashrc.d/*; do + source "$config" done fi -unset file +unset config -- cgit v1.2.3