From 0b0de8ca83dc861978d2e26f0ca7144b8c159a59 Mon Sep 17 00:00:00 2001 From: makeProjectGreatAgain Date: Mon, 15 Jul 2024 21:11:09 +0400 Subject: [PATCH] Display hint to add PATH for Fish shell too (#14504) tested on `fish 3.7.1 (released March 19, 2024)` ___ Release Notes: - N/A --- script/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/install.sh b/script/install.sh index e6b4e85e0f..ddee254881 100755 --- a/script/install.sh +++ b/script/install.sh @@ -59,6 +59,9 @@ main() { echo " echo 'export PATH=\$HOME/.local/bin:\$PATH' >> ~/.zshrc" echo " source ~/.zshrc" ;; + *fish) + echo " fish_add_path -U $HOME/.local/bin" + ;; *) echo " echo 'export PATH=\$HOME/.local/bin:\$PATH' >> ~/.bashrc" echo " source ~/.bashrc"