Skip to content

Commit

Permalink
FIX Don't use a single quote even in a comment (#153)
Browse files Browse the repository at this point in the history
Swapping the comment style too because I think bash will ignore it and I
want it to be ignored
  • Loading branch information
GuySartorelli authored Sep 11, 2024
1 parent 4ebaacb commit 0d6ec5a
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 @@ -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;
Expand Down

0 comments on commit 0d6ec5a

Please sign in to comment.