bspwm: Fix path patching bug

How did I miss this.
This commit is contained in:
Salt 2018-04-19 10:57:19 -05:00
parent 6710bc261b
commit 7357cdeaf9

View File

@ -21,7 +21,7 @@
# SOFTWARE.
## Patch path, if not already done
if [[ "$PATH" != "*$HOME/.local/bin" ]]; then
if [[ "$PATH" != "*$HOME/.local/bin*" ]]; then
export PATH="$HOME/.local/bin:$PATH"
fi