authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-07-02 16:10:22-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-07-02 16:11:05-04:00
logb05b5649df341573c0a42de503ceb025c4129473
tree41a1756d443aae17e3187187a941a294f27763f0
parent04b32d6a8aa30cc894f3057581ffda28466e8ef2
signaturelock-open Commit is signed but in an unrecognized format.

print dir name on failure to write to cache dir

closes #2429

1 files changed, 1 insertions(+), 1 deletions(-)

src/codegen.cpp+1-1
...@@ -9598,7 +9598,7 @@ void codegen_build_and_link(CodeGen *g) {...@@ -9598,7 +9598,7 @@ void codegen_build_and_link(CodeGen *g) {
9598 fprintf(stderr, "Unable to check cache: %s is not a directory\n",9598 fprintf(stderr, "Unable to check cache: %s is not a directory\n",
9599 buf_ptr(manifest_dir));9599 buf_ptr(manifest_dir));
9600 } else {9600 } else {
9601 fprintf(stderr, "Unable to check cache: %s\n", err_str(err));9601 fprintf(stderr, "Unable to check cache: %s: %s\n", buf_ptr(manifest_dir), err_str(err));
9602 }9602 }
9603 exit(1);9603 exit(1);
9604 }9604 }