File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const mem = std.mem;
9
9
const Allocator = std .mem .Allocator ;
10
10
const Child = std .process .Child ;
11
11
const Build = std .Build ;
12
- const FileSource = std .Build .FileSource ;
12
+ const LazyPath = std .Build .LazyPath ;
13
13
const Reader = fs .File .Reader ;
14
14
const RunStep = std .Build .RunStep ;
15
15
const Step = Build .Step ;
@@ -132,9 +132,9 @@ fn createCase(b: *Build, name: []const u8) *Step {
132
132
const CheckNamedStep = struct {
133
133
step : Step ,
134
134
exercise : Exercise ,
135
- stderr : FileSource ,
135
+ stderr : LazyPath ,
136
136
137
- pub fn create (owner : * Build , exercise : Exercise , stderr : FileSource ) * CheckNamedStep {
137
+ pub fn create (owner : * Build , exercise : Exercise , stderr : LazyPath ) * CheckNamedStep {
138
138
const self = owner .allocator .create (CheckNamedStep ) catch @panic ("OOM" );
139
139
self .* = .{
140
140
.step = Step .init (.{
@@ -180,12 +180,12 @@ const CheckNamedStep = struct {
180
180
const CheckStep = struct {
181
181
step : Step ,
182
182
exercises : []const Exercise ,
183
- stderr : FileSource ,
183
+ stderr : LazyPath ,
184
184
185
185
pub fn create (
186
186
owner : * Build ,
187
187
exercises : []const Exercise ,
188
- stderr : FileSource ,
188
+ stderr : LazyPath ,
189
189
) * CheckStep {
190
190
const self = owner .allocator .create (CheckStep ) catch @panic ("OOM" );
191
191
self .* = .{
You can’t perform that action at this time.
0 commit comments