Skip to content

Commit 25c594d

Browse files
committedJul 29, 2022
Update to use forked solidus_frontend when needed
1 parent ca3e1c5 commit 25c594d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎Gemfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ source 'https://rubygems.org'
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

66
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
7-
gem 'solidus', github: 'solidusio/solidus', branch: branch
7+
solidus_git, solidus_frontend_git = if (branch == 'master') || (branch >= 'v3.2')
8+
%w[solidusio/solidus solidusio/solidus_frontend]
9+
else
10+
%w[solidusio/solidus] * 2
11+
end
12+
gem 'solidus', github: solidus_git, branch: branch
13+
gem 'solidus_frontend', github: solidus_frontend_git, branch: branch
814

915
# Needed to help Bundler figure out how to resolve dependencies,
1016
# otherwise it takes forever to resolve them.

0 commit comments

Comments
 (0)