From cfe0db1edab7cb23267519d75853da881ab2f386 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Tue, 9 Jul 2024 10:01:02 +1200 Subject: [PATCH] FIX Use double quotes --- .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 93f6545..bcb3c92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -611,7 +611,7 @@ jobs: php -r ' $j = json_decode(file_get_contents("composer.json")); $v = $j->require->{"silverstripe/installer"}; - if (strpos($v, '^') === 0) { + if (strpos($v, "^") === 0) { $v = str_replace("^", "", $v) . ".x-dev"; } $j->require->{"silverstripe/installer"} = $v;