Skip to content

Commit

Permalink
internal/ci: correct glob path
Browse files Browse the repository at this point in the history
An extra bracket in the `Remove` glob path causes `writefs` to fail
in cleaning up extra files.

This fix removes the bracket to correct the path.

Change-Id: I2775073468ca6c2f7465fddeced881dd6ec24150
Signed-off-by: haoqixu <[email protected]>
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cuelang.org/+/1206336
Reviewed-by: Daniel Martí <[email protected]>
TryBot-Result: CUEcueckoo <[email protected]>
  • Loading branch information
haoqixu authored and myitcv committed Dec 30, 2024
1 parent 6a04fb0 commit 0fccd13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ci/ci.cue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ fs: #writefs & {
Tool: "internal/ci/ci_tool.cue"

Remove: [
"../../.github/workflows/*)\(base.workflowFileExtension)",
"../../.github/workflows/*\(base.workflowFileExtension)",
]

Create: {
Expand Down

0 comments on commit 0fccd13

Please sign in to comment.