From 786b20986f627b13d13d76c204af804090113291 Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Mon, 17 Aug 2026 07:12:04 +0200 Subject: [PATCH] Quote the load check so /bin/sh can parse it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- .woodpecker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker.yaml b/.woodpecker.yaml index 7627a2f..a025b3a 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -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"'