diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-03-07 13:16:52 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-03-07 13:16:52 -0500 |
| commit | 4d8467fafc5966f884325d1e3b7dae34c420fa10 (patch) | |
| tree | 2091e6fcc94ab63ca49a861fe493ddba89d5eeb6 /src/error.cpp | |
| parent | e2ce00f272acdf3a0b5bdb3f9322aa1c487c483d (diff) | |
| download | zig-4d8467fafc5966f884325d1e3b7dae34c420fa10.tar.gz zig-4d8467fafc5966f884325d1e3b7dae34c420fa10.zip | |
better behavior when cache dir unavailable
and choose different manifest dir for local cache to avoid
conflict with zig build
Diffstat (limited to 'src/error.cpp')
| -rw-r--r-- | src/error.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/error.cpp b/src/error.cpp index 17d44bffed..38d62512f6 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -29,6 +29,7 @@ const char *err_str(Error err) { case ErrorCCompileErrors: return "C compile errors"; case ErrorEndOfFile: return "end of file"; case ErrorIsDir: return "is directory"; + case ErrorNotDir: return "not a directory"; case ErrorUnsupportedOperatingSystem: return "unsupported operating system"; case ErrorSharingViolation: return "sharing violation"; case ErrorPipeBusy: return "pipe busy"; |
