Files
hestiacp/func_ruby/update_required_gems.sh

8 lines
130 B
Bash
Raw Normal View History

2024-12-03 21:44:39 +03:00
#!/usr/bin/bash
if [ -e /opt/brepo/ruby33/bin/bundle ]; then
/opt/brepo/ruby33/bin/bundle install
else
bundle install
fi