Display hint to add PATH for Fish shell too (#14504)

makeProjectGreatAgain created

tested on `fish 3.7.1 (released March 19, 2024)`
___

Release Notes:

- N/A

Change summary

script/install.sh | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

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"