# add a bunch of personal folders to the list for checkin & checkout.
REPOSITORY_LIST+="cloud ebooks web"
- REPOSITORY_LIST+="$(find $HOME/active -maxdepth 1 -mindepth 1 -type d)"
+ # add in any active projects.
+ if [ -d "$HOME/active" ]; then
+ REPOSITORY_LIST+="$(find "$HOME/active" -maxdepth 1 -mindepth 1 -type d)"
+ fi
# adds our locally relevant archive folders into the list to be synched.
ARCHIVE_COLLECTIONS_LIST+="/z/basement /z/imaginations /z/musix /z/toaster /z/walrus"