| author | |
| committer | |
| log | 08e886b8fec4c51366517b1c1d52d588c24abb4f |
| tree | 8d2b0a19f37e4e4b96c872ebf4cdf3af75db3ddb |
| parent | 661137ac92ef05490a22dfcfb812a81a3014f0c7 |
Regressed in ed4ccea7bae99c1baa634716941f308d9f922985. The early exit
path was only supposed to happen in case of --system mode.1 files changed, 1 insertions(+), 1 deletions(-)
src/Package/Fetch.zig+1-1| ... | ... | @@ -402,7 +402,7 @@ pub fn run(f: *Fetch) RunError!void { |
| 402 | 402 | return error.FetchFailed; |
| 403 | 403 | }, |
| 404 | 404 | } |
| 405 | } else { | |
| 405 | } else if (f.job_queue.read_only) { | |
| 406 | 406 | try eb.addRootErrorMessage(.{ |
| 407 | 407 | .msg = try eb.addString("dependency is missing hash field"), |
| 408 | 408 | .src_loc = try f.srcLoc(f.location_tok), |