I tried to create an alias in bash but am not able to do.
alias bundle-vendor= 'bundle install vendor --disable-shared-gems'
I tried to create an alias in bash but am not able to do.
alias bundle-vendor= 'bundle install vendor --disable-shared-gems'
Try:
alias bundle-vendor='bundle install vendor --disable-shared-gems'
It works for me.