Skip to content

Commit

Permalink
Fix startup script for non-bash shells.
Browse files Browse the repository at this point in the history
  • Loading branch information
wereHamster committed May 20, 2007
1 parent 90c5a85 commit f6cf4c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/yukon
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ YLDPATH="${HOME}/.yukon/lib"
SYSDIRS="/etc/yukon/system ${HOME}/.yukon/system"
for DIR in ${SYSDIRS}; do
if [ -d "${DIR}" ]; then
for FILE in $(ls "${DIR}"); do
source "${DIR}/${FILE}"
for FILE in ${DIR}/*; do
. "${FILE}"
YLDPATH="${YLDPATH}:${LDPATH}"
done
fi
Expand Down

0 comments on commit f6cf4c4

Please sign in to comment.