| ... | @@ -1469,13 +1469,13 @@ pub const Step = struct { | ... | @@ -1469,13 +1469,13 @@ pub const Step = struct { |
| 1469 | } | 1469 | } |
| 1470 | }; | 1470 | }; |
| 1471 | | 1471 | |
| 1472 | const VcpkgRoot = union(VcpkgRootStatus) { | 1472 | pub const VcpkgRoot = union(VcpkgRootStatus) { |
| 1473 | unattempted: void, | 1473 | unattempted: void, |
| 1474 | not_found: void, | 1474 | not_found: void, |
| 1475 | found: []const u8, | 1475 | found: []const u8, |
| 1476 | }; | 1476 | }; |
| 1477 | | 1477 | |
| 1478 | const VcpkgRootStatus = enum { | 1478 | pub const VcpkgRootStatus = enum { |
| 1479 | unattempted, | 1479 | unattempted, |
| 1480 | not_found, | 1480 | not_found, |
| 1481 | found, | 1481 | found, |