Quote the load check so /bin/sh can parse it
ci/woodpecker/manual/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful

The check used escaped double quotes around a Ruby interpolation, which
the pipeline's /bin/sh rejected with "Unterminated quoted string". Single
quotes outside, plain concatenation inside — no escapes left to misread.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-17 07:12:04 +02:00
co-authored by Claude Opus 5
parent 9c21133ce5
commit 786b20986f
+1 -1
View File
@@ -14,4 +14,4 @@ steps:
- gem build bbs.gemspec
- echo "==> Load check"
- gem install --no-document ./bbs-*.gem
- ruby -e "require 'bbs'; puts \"BBS betoltve, #{BBS.constants.size} konstans\""
- ruby -e 'require "bbs"; puts "BBS betoltve, " + BBS.constants.size.to_s + " konstans"'