summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2024-02-06 23:30:46 -0600
committerzachir <zachir@librem.one>2024-02-06 23:30:46 -0600
commit7aa054170a4ac8469ccaa91e69b4979062c6a1a1 (patch)
tree61bf14fb207d9f9199d8ee83619ae302d7ab193a
parent87d8f4f3a0a1aba1726f2413650aa137e8973856 (diff)
sh: fix volsv in PATH
volsv was wrong in .profile when setting the path in two different ways. Nice.
-rw-r--r--sh/profile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sh/profile b/sh/profile
index 1174421..b226b4c 100644
--- a/sh/profile
+++ b/sh/profile
@@ -102,8 +102,8 @@ fi
if [ -d "$HOME/.local/bin/ignore" ]; then
PATH="$PATH:$HOME/.local/bin/ignore"
fi
-if [ -d "$HOME/local/bin/volsv" ]; then
- PATH="$PATH:$HOME/.local/volsv"
+if [ -d "$HOME/.local/bin/volsv" ]; then
+ PATH="$PATH:$HOME/.local/bin/volsv"
fi
if [ -d "$HOME/.local/bin" ]; then
PATH="$PATH:$HOME/.local/bin"