From d45b65c15be484a1e465cedb278405b4403be640 Mon Sep 17 00:00:00 2001 From: Ronald Tse Date: Sat, 22 Aug 2026 11:53:57 +0800 Subject: [PATCH] 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. --- Gemfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 906c6f5c..371cb18d 100644 --- a/Gemfile +++ b/Gemfile @@ -5,7 +5,11 @@ gemspec gem "rake", "~> 13.0" gem "rspec", "~> 3.13" -gem "interscript-maps", path: "../maps" +if File.exist?("../maps") + gem "interscript-maps", path: "../maps" +else + gem "interscript-maps" +end group :secryst do if File.exist?("../../secryst")