diff options
author | zachir <zachir@librem.one> | 2024-02-06 23:30:46 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2024-02-06 23:33:22 -0600 |
commit | a4413556bfa84121291f687195d53bc21bce0ff1 (patch) | |
tree | b4bfbf008ee23be8b87bd24f57b6dde6736928c6 /sh | |
parent | 83274ffd4d91721d643d6c9995df9a670d0bcad3 (diff) |
sh: fix volsv in PATH
volsv was wrong in .profile when setting the path in two different ways.
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 + PATH="$PATH:$HOME/.local/bin/volsv" fi if [ -d "$HOME/.local/bin" ]; then addtopath "$HOME/.local/bin" |