From 4d3654e504660d966c99bfcac939e3513a1d2179 Mon Sep 17 00:00:00 2001 From: Jimmy Adams Date: Wed, 22 Jan 2025 18:18:07 -0500 Subject: [PATCH] Fix linux-setup.sh $HOME/bin should be $HOME/.local/bin --- scripts/linux-setup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/linux-setup.sh b/scripts/linux-setup.sh index fb9ee393..f008d95d 100644 --- a/scripts/linux-setup.sh +++ b/scripts/linux-setup.sh @@ -13,14 +13,14 @@ ####################################################### # Determine where edmarketconnector.sh needs to go ####################################################### -# Really we need this to be "${HOME}/bin", so check that is in $PATH -if [[ ":$PATH:" != *":$HOME/bin:"* ]]; +# Really we need this to be "${HOME}/.local/bin", so check that is in $PATH +if [[ ":$PATH:" != *":$HOME/.local/bin:"* ]]; then - echo "You need to have '${HOME}/bin' in your PATH" + echo "You need to have '${HOME}/.local/bin' in your PATH" echo "Please fix this (might require relogging) and try again" exit 1 fi -EDMC_BIN_PATH="${HOME}/bin" +EDMC_BIN_PATH="${HOME}/.local/bin" if [ ! -d "${EDMC_BIN_PATH}" ]; then echo "'${EDMC_BIN_PATH}' must exist and be a directory!"