summaryrefslogtreecommitdiffstats
path: root/composer.csh
blob: b57b1d01d2562aa0c1861356a3963f165b49c428 (plain)
1
2
3
4
5
6
7
8
9
# Composer initialization script

# Add path to commands installed using "composer global require ..."
if ( ${euid} > 0 ) then
  if ( "${path}" !~  *${HOME}/.composer/vendor/bin* ) then
   set path = ( $path ${HOME}/.composer/vendor/bin )
  endif
endif