Skip to content

Commit d45b65c

Browse files
committed
ci: fall back to the published interscript-maps gem when ../maps is absent
The rake workflow only checks out this repo, so the hard path dependency made every bundle command fail with 'The path ../maps does not exist' (exit 13). Mirrors the existing secryst-group pattern: local sibling in dev, published gem in CI.
1 parent 3ee44b3 commit d45b65c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ gemspec
55
gem "rake", "~> 13.0"
66
gem "rspec", "~> 3.13"
77

8-
gem "interscript-maps", path: "../maps"
8+
if File.exist?("../maps")
9+
gem "interscript-maps", path: "../maps"
10+
else
11+
gem "interscript-maps"
12+
end
913

1014
group :secryst do
1115
if File.exist?("../../secryst")

0 commit comments

Comments
 (0)