From 6b2ebf575ff98d3970b518de04238d30804a40d1 Mon Sep 17 00:00:00 2001 From: Edwin Kofler Date: Sun, 28 May 2023 06:06:23 -0700 Subject: [PATCH] fix: Typo in POSIX entrypoint (#1562) --- asdf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asdf.sh b/asdf.sh index a19265c0..aadb43f3 100644 --- a/asdf.sh +++ b/asdf.sh @@ -10,7 +10,7 @@ export ASDF_DIR="${ASDF_DIR:-}" if [ -z "$ASDF_DIR" ]; then if [ -n "$BASH_VERSION" ]; then # Use BASH_SOURCE[0] to obtain the relative path to this source'd file. Since it's - # a relative path, 'cd' to its dirname and use '$PWD" to obtain the fullpath. + # a relative path, 'cd' to its dirname and use '$PWD' to obtain the fullpath. # Use 'builtin cd' to ensure user-defined 'cd()' functions aren't called. # Use variable '_asdf_old_dir' to avoid using subshells.