From 2509a791764efaa313a49dc1005796cba067588f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Grythe=20St=C3=B8dle?= Date: Thu, 6 Feb 2020 20:41:55 +0100 Subject: [PATCH] fix: Change command duration variable for Ion shell to CMD_DURATION (#911) --- src/init/starship.ion | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/init/starship.ion b/src/init/starship.ion index 5d9ef4f33..0d979df2d 100644 --- a/src/init/starship.ion +++ b/src/init/starship.ion @@ -4,7 +4,9 @@ fn PROMPT let STARSHIP_ION_STATUS = $? # Save the ION_CMD_DURATION before running any other commands, but after the status since the # duration is not updated during variable assignment - let STARSHIP_ION_CMD_DURATION = $ION_CMD_DURATION + # Account for variable name change sometime during December 2019 - January 2020 + let STARSHIP_ION_CMD_DURATION = $or($CMD_DURATION $ION_CMD_DURATION) + let STARSHIP_ION_CMD_DURATION = $((STARSHIP_ION_CMD_DURATION * 1000)) # The STARSHIP between the colons will be replaced with the actual path to the starship executable. # The jobs command outputs to stderr, therefore we need to pipe stderr to `wc -l`.