Commit 8840865e authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Check file exists before sourcing it

parent 4258a99f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ warn()
source_each()
{
	for file in "$@"; do
		[ -e "$file" ] || continue
		. "$file"
	done
}