From 350fc5e6ed4d35638c6493e210dbe7a35b5fa099 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 5 Aug 2013 13:30:14 +1200 Subject: More thorough quoting --- sh/profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sh/profile') diff --git a/sh/profile b/sh/profile index 813fb7cc..14b0a56b 100644 --- a/sh/profile +++ b/sh/profile @@ -15,8 +15,8 @@ export PATH # Load all supplementary scripts in ~/.profile.d if [ -d "$HOME/.profile.d" ]; then - for file in $HOME/.profile.d/*; do - . $file + for file in "$HOME/.profile.d"/*; do + . "$file" done fi -- cgit v1.2.3