Commit e254d45b authored by Dom Sekotill's avatar Dom Sekotill
Browse files

fixed a line in .profile

In .profile, the pathmunge function broke when a variable contained
parenthesis, so the eval line is now wrapped in double & single quotes.
parent 65f2aab6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ pathmunge()
		esac
		shift
	done
	eval $var="${pre:+$pre:}$val${post:+:$post}"
	eval $var="'${pre:+$pre:}$val${post:+:$post}'"
}

if [ -d ~/.local ]; then