From 48e90be82a70a9badf64cdbecdd8e6ef7d53fb0e Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 24 Jan 2023 11:20:30 -1000 Subject: [PATCH] imp: install: don't list hledger-install.sh in PATH, seems confusing --- hledger-install/hledger-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hledger-install/hledger-install.sh b/hledger-install/hledger-install.sh index 6570f4ea3..4216012fe 100755 --- a/hledger-install/hledger-install.sh +++ b/hledger-install/hledger-install.sh @@ -854,7 +854,7 @@ print_cmd_version() { # Show the current installation status of the hledger packages. print_installed_versions() { - for cmd in $HLEDGER_MAIN_TOOLS $HLEDGER_OTHER_TOOLS $HLEDGER_INSTALL_TOOL ; do print_cmd_version "$cmd"; done + for cmd in $HLEDGER_MAIN_TOOLS $HLEDGER_OTHER_TOOLS ; do print_cmd_version "$cmd"; done } # Run a command, but first log it with "Trying" prepended.