Skip to content

Commit

Permalink
fix: newline after error msg for ASDF_DIR (#1113)
Browse files Browse the repository at this point in the history
Co-authored-by: James Hegedus <jthegedus@hey.com>
  • Loading branch information
mstruebing and jthegedus committed Dec 6, 2021
1 parent f85fef5 commit ac2791e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asdf.sh
Expand Up @@ -16,7 +16,7 @@ if [ -z "$ASDF_DIR" ]; then
fi
export ASDF_DIR
# shellcheck disable=SC2016
[ -d "$ASDF_DIR" ] || printf '$ASDF_DIR is not a directory'
[ -d "$ASDF_DIR" ] || printf "%s\n" "$ASDF_DIR is not a directory"

# Add asdf to PATH
#
Expand Down

0 comments on commit ac2791e

Please sign in to comment.