2e17b78e08
Convenience for bundling both OSS and SaaS in lock-step: ```bash > bin/bundle-both install ▸ OSS: Gemfile bundle install Bundle complete! 45 Gemfile dependencies, 161 gems now installed. Use `bundle info [gemname]` to see where a bundled gem is installed. ▸ SaaS: Gemfile.saas bundle install Bundle complete! 63 Gemfile dependencies, 187 gems now installed. Use `bundle info [gemname]` to see where a bundled gem is installed. ```
13 lines
315 B
Bash
Executable File
13 lines
315 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo
|
|
gum style --foreground 135 --bold "▸ OSS: Gemfile"
|
|
gum style --foreground 240 "bundle $*"
|
|
BUNDLE_GEMFILE=Gemfile bundle "$@"
|
|
|
|
echo
|
|
gum style --foreground 135 --bold "▸ SaaS: Gemfile.saas"
|
|
gum style --foreground 240 "bundle $*"
|
|
BUNDLE_GEMFILE=Gemfile.saas bundle "$@"
|