Skip to content

Commit 15869d3

Browse files
committed
Fix stale CI template paths for Ruby syntax checks
Update lint-ecosystems job to use correct paths for Bundler plugin templates. Templates moved from gem_setup/templates/ to setup/gem/templates/ but CI workflow was still referencing the old paths, causing ruby -c checks to fail.
1 parent 639e3f0 commit 15869d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ jobs:
9494
( cd gem/socket-patch && ruby -c lib/socket_patch/launcher.rb && ruby -c exe/socket-patch && gem build socket-patch.gemspec )
9595
( cd gem/socket-patch-bundler && ruby -c plugins.rb && gem build socket-patch-bundler.gemspec )
9696
# The generated-plugin templates are pure Ruby — keep them parseable.
97-
ruby -c crates/socket-patch-core/src/gem_setup/templates/plugins.rb.tmpl
98-
ruby -c crates/socket-patch-core/src/gem_setup/templates/gemspec.tmpl
97+
ruby -c crates/socket-patch-core/src/setup/gem/templates/plugins.rb.tmpl
98+
ruby -c crates/socket-patch-core/src/setup/gem/templates/gemspec.tmpl
9999
100100
- name: PHP — lint the Composer launcher + validate composer.json
101101
# composer.json lives at the repo root (Packagist requires the

0 commit comments

Comments
 (0)