mirror of
https://github.com/starship/starship.git
synced 2024-11-22 08:14:10 +01:00
fix(fish): allow generating session keys in older versions of fish (#3697)
* fix(linux): session key generation in fish * fix(fish): use string sub commands for the compatibility * fix(fish): add comment
This commit is contained in:
parent
e04f126a10
commit
0fb4219690
@ -37,4 +37,5 @@ builtin functions -e fish_mode_prompt
|
||||
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)
|
||||
# We don't use `random [min] [max]` because it is unavailable in older versions of fish shell
|
||||
set -gx STARSHIP_SESSION_KEY (string sub -s1 -l16 (random)(random)(random)(random)(random)0000000000000000)
|
||||
|
Loading…
Reference in New Issue
Block a user