From 4ebaacb9a91f5f0214835d7049647ff4b89b1bff Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Thu, 12 Sep 2024 11:26:30 +1200 Subject: [PATCH] FIX Use double quotes for inline PHP (#152) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7883f0..00bf3a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -629,7 +629,7 @@ jobs: if (strpos($v, "^") === 0) { $v = str_replace("^", "", $v) . ".x-dev"; // Remove @beta, @rc, or @alpha if they're there - $v = preg_replace('/@(alpha|beta|rc)/', '', $v); + $v = preg_replace("/@(alpha|beta|rc)/", "", $v); } $j->require->{"silverstripe/installer"} = $v; $c = json_encode($j, JSON_PRETTY_PRINT + JSON_UNESCAPED_SLASHES);