From 95a7ec94061a13bbb1131c99ae0b69fd36389456 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Thu, 12 Sep 2024 11:46:18 +1200 Subject: [PATCH] FIX Don't use a single quote even in a comment Swapping the comment style too because I think bash will ignore it and I want it to be ignored --- .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 00bf3a3..6455e14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -628,7 +628,7 @@ jobs: $v = $j->require->{"silverstripe/installer"}; if (strpos($v, "^") === 0) { $v = str_replace("^", "", $v) . ".x-dev"; - // Remove @beta, @rc, or @alpha if they're there + # Remove @beta, @rc, or @alpha if they are there $v = preg_replace("/@(alpha|beta|rc)/", "", $v); } $j->require->{"silverstripe/installer"} = $v;