From 95522e7ac797bda397bd3bffeb58984962cce3a9 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Tue, 18 Oct 2016 12:17:37 -0400 Subject: [PATCH] attempting to fix bug --- custompkg/root/etc/skel/.bashrc | 2 +- custompkg/root/etc/skel/.profile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custompkg/root/etc/skel/.bashrc b/custompkg/root/etc/skel/.bashrc index a34f503..4be9b85 100644 --- a/custompkg/root/etc/skel/.bashrc +++ b/custompkg/root/etc/skel/.bashrc @@ -1,4 +1,4 @@ # do not edit this file. put files in the dir below. for FN in $HOME/Library/bashrc.d/*.sh ; do - source $FN + source "$FN" done diff --git a/custompkg/root/etc/skel/.profile b/custompkg/root/etc/skel/.profile index 2b2fe80..1e18ed5 100644 --- a/custompkg/root/etc/skel/.profile +++ b/custompkg/root/etc/skel/.profile @@ -1,5 +1,5 @@ # do not edit this file. put files in the dir below. source ~/.bashrc for FN in $HOME/Library/profile.d/*.sh ; do - source $FN + source "$FN" done