From 6bd4e724e9fdddd355540bf25ff7ae8fea9e3ed6 Mon Sep 17 00:00:00 2001 From: Jan Christoph Ebersbach Date: Mon, 15 Feb 2021 20:10:08 +0100 Subject: [PATCH] fix: correct fish syntax error when setting variables (#2320) --- src/init/starship.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/init/starship.fish b/src/init/starship.fish index 4665b94c..595e16b3 100644 --- a/src/init/starship.fish +++ b/src/init/starship.fish @@ -15,7 +15,7 @@ end set VIRTUAL_ENV_DISABLE_PROMPT 1 function fish_mode_prompt; end -set -gx STARSHIP_SHELL="fish" +set -gx STARSHIP_SHELL "fish" # Set up the session key that will be used to store logs -set -gx STARSHIP_SESSION_KEY=(random 10000000000000 9999999999999999) +set -gx STARSHIP_SESSION_KEY (random 10000000000000 9999999999999999)