mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.Build.Cache.Path: fix single-quote escaping format
This commit is contained in:
parent
14c8e270bb
commit
101d21a6dc
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ pub fn format(
|
|||
const stringEscape = std.zig.stringEscape;
|
||||
const f = switch (fmt_string[0]) {
|
||||
'q' => "",
|
||||
'\'' => '\'',
|
||||
'\'' => "\'",
|
||||
else => @compileError("unsupported format string: " ++ fmt_string),
|
||||
};
|
||||
if (self.root_dir.path) |p| {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue