Also installs stow during install
Only add composer to path if it exists
This commit is contained in:
@ -133,7 +133,11 @@ fi
|
||||
export PATH=$HOME/.local/bin:$PATH
|
||||
export PATH=$HOME/bin:$PATH
|
||||
export PATH=$PATH:/snap/bin
|
||||
export PATH=$PATH:$HOME/.composer/vendor/bin
|
||||
if command -v composer &> /dev/null
|
||||
then
|
||||
export PATH=$PATH:$HOME/.composer/vendor/bin
|
||||
export PATH=$PATH:$(composer global config bin-dir --absolute --quiet)
|
||||
fi
|
||||
export PATH=$PATH:$HOME/.symfony/bin
|
||||
|
||||
# Go
|
||||
|
Reference in New Issue
Block a user