We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 456d3bb + d3e43ca commit d9ac93dCopy full SHA for d9ac93d
static/script/install-cli.sh
@@ -299,14 +299,14 @@ buildPathStr() {
299
# fish uses a little different syntax to modify the PATH
300
cat <<END_FISH_SCRIPT
301
302
-string match -r "kcl" "\$PATH" > /dev/null; or set -gx PATH "\$profile_install_dir/bin" \$PATH
+string match -r "kcl" "\$PATH" > /dev/null; or set -gx PATH "$profile_install_dir" \$PATH
303
304
END_FISH_SCRIPT
305
else
306
# bash and zsh
307
cat <<END_BASH_SCRIPT
308
309
-export PATH="$profile_install_dir/bin:\$PATH"
+export PATH="$profile_install_dir:\$PATH"
310
311
END_BASH_SCRIPT
312
fi
0 commit comments