Skip to content

Commit

Permalink
FIX Use double quotes for inline PHP (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Sep 11, 2024
1 parent efc4eea commit 4ebaacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4ebaacb

Please sign in to comment.