File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ pub fn addCliTests(b: *std.Build, exercises: []const Exercise) *Step {
50
50
case_step .dependOn (& verify .step );
51
51
}
52
52
53
- const cleanup = b .addRemoveDirTree (tmp_path );
53
+ const cleanup = b .addRemoveDirTree (.{ . src_path = .{ . owner = b , . sub_path = tmp_path } } );
54
54
cleanup .step .dependOn (case_step );
55
55
56
56
step .dependOn (& cleanup .step );
@@ -82,7 +82,7 @@ pub fn addCliTests(b: *std.Build, exercises: []const Exercise) *Step {
82
82
const verify = CheckStep .create (b , exercises , stderr );
83
83
verify .step .dependOn (& cmd .step );
84
84
85
- const cleanup = b .addRemoveDirTree (tmp_path );
85
+ const cleanup = b .addRemoveDirTree (.{ . src_path = .{ . owner = b , . sub_path = tmp_path } } );
86
86
cleanup .step .dependOn (& verify .step );
87
87
88
88
step .dependOn (& cleanup .step );
You can’t perform that action at this time.
0 commit comments