From 7f9220dbd88eac208b9d7b8ce23d86d951794005 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sat, 23 Feb 2019 14:41:57 -0800 Subject: [PATCH] [Fix] `nvm ls`: `--no-colors`: `system`: print an asterisk --- nvm.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvm.sh b/nvm.sh index 31a9296..43caa24 100644 --- a/nvm.sh +++ b/nvm.sh @@ -1433,6 +1433,8 @@ nvm_print_versions() { elif [ "${VERSION}" = "system" ]; then if [ "${NVM_HAS_COLORS-}" = '1' ]; then FORMAT='\033[0;33m%15s\033[0m' + else + FORMAT='%15s *' fi elif nvm_is_version_installed "${VERSION}"; then if [ "${NVM_HAS_COLORS-}" = '1' ]; then