diff options
author | zachir <zachir@librem.one> | 2024-02-06 12:15:54 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2024-02-06 12:15:54 -0600 |
commit | c4896920b1ce629ad74ef38cc78161a316ef0c09 (patch) | |
tree | ad17ec895e0ec29611b2fcc2ebf5eb148975532f /sh | |
parent | 47236e10e7365c958f6d1bf29bcd18d86a12e568 (diff) |
sh: fix volsv path
The volsv path was wrong, in both instances. Nice.
Diffstat (limited to 'sh')
-rw-r--r-- | sh/profile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -115,8 +115,8 @@ fi if [ -d "$HOME/.local/bin/ignore" ]; then addtopath "$HOME/.local/bin/ignore" fi -if [ -d "$HOME/local/bin/volsv" ]; then - addtopath "$HOME/.local/volsv" +if [ -d "$HOME/.local/bin/volsv" ]; then + addtopath "$HOME/.local/bin/volsv" fi if [ -d "$HOME/.local/bin" ]; then addtopath "$HOME/.local/bin" |