8 lines
130 B
8 lines
130 B
5 months ago
|
#!/usr/bin/bash
|
||
|
|
||
|
if [ -e /opt/brepo/ruby33/bin/bundle ]; then
|
||
|
/opt/brepo/ruby33/bin/bundle install
|
||
|
else
|
||
|
bundle install
|
||
|
fi
|