Commit 3c7ee24d authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Properly quote arguments in expand()

parent 40bf0f9d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ esac


if has realpath; then
	expand() { realpath $1; }
	expand() { realpath "$1"; }
elif has readlink; then
	expand() { readlink -f $1; }
	expand() { readlink -f "$1"; }
fi