From 6e0cbf56ef8e8b38aa55e6b33b17e54e45de888a Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 4 Aug 2019 16:08:08 -0300 Subject: Add snap into PATH --- profile.dot.link | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/profile.dot.link b/profile.dot.link index 5e0dab7..4ba8466 100644 --- a/profile.dot.link +++ b/profile.dot.link @@ -19,6 +19,11 @@ fi # Set PATH PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/games:/usr/local/bin:/usr/local/sbin:/usr/local/games +# Add snap into PATH +if [ -d "/snap/bin" ]; then + PATH="/snap/bin:$PATH" +fi + # Add ~/.local/bin folder into PATH if [ -d "$HOME/.local/bin" ]; then PATH=$HOME/.local/bin:$PATH -- cgit v1.2.3