From 7aa054170a4ac8469ccaa91e69b4979062c6a1a1 Mon Sep 17 00:00:00 2001 From: zachir Date: Tue, 6 Feb 2024 23:30:46 -0600 Subject: sh: fix volsv in PATH volsv was wrong in .profile when setting the path in two different ways. Nice. --- sh/profile | 4 ++-- 1 file 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" -- cgit v1.2.3