Skip to content

Commit 91903e7

Browse files
committed
fix log message
1 parent 098aacf commit 91903e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/launch.fish

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if test -n "$asdf"
2323
# Source the old asdf.sh script for versions <= 0.15.0
2424
source "$ASDF_SH"
2525
else
26-
echo "asdf executable found at $asdf. Setting ASDF_DIR=$ASDF_DIR and adding $ASDF_DATA_DIR/shims to PATH." >&2
26+
echo "asdf executable found at $asdf. Setting ASDF_DIR=$ASDF_DIR and adding $ASDF_DIR/shims to PATH." >&2
2727
# If the binary is found, set up environment for newer asdf versions
2828
set -gx ASDF_DATA_DIR "$ASDF_DIR"
2929
set -gx PATH "$ASDF_DATA_DIR/shims" $PATH

scripts/launch.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ASDF_DIR=${ASDF_DIR:-"${HOME}/.asdf"}
4141

4242
# Check if we have the asdf binary for version >= 0.16.0
4343
if command -v asdf >/dev/null 2>&1; then
44-
>&2 echo "asdf executable found at $(command -v asdf). Setting ASDF_DIR=${ASDF_DIR} and adding ${ASDF_DATA_DIR}/shims to PATH."
44+
>&2 echo "asdf executable found at $(command -v asdf). Setting ASDF_DIR=${ASDF_DIR} and adding ${ASDF_DIR}/shims to PATH."
4545
# If the binary is found, set up environment for newer asdf versions
4646
export ASDF_DATA_DIR="$ASDF_DIR"
4747
export PATH="$ASDF_DATA_DIR/shims:$PATH"

0 commit comments

Comments
 (0)