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