Browse Source

Fix unrendered style string

default_compile_flags
vector-of-bool 3 years ago
parent
commit
aa79f5c38f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/dds/build/plan/exe.cpp

+ 1
- 1
src/dds/build/plan/exe.cpp View File

@@ -88,7 +88,7 @@ std::optional<test_failure> link_executable_plan::run_test(build_env_ref env) co
[&] { return run_proc({.command = {exe_path.string()}, .timeout = 10s}); });

if (res.okay()) {
dds_log(info, "{} - .br.green[PASS] - {:>9L}μs", msg, dur.count());
dds_log(info, "{} - .br.green[PASS] - {:>9L}μs"_styled, msg, dur.count());
return std::nullopt;
} else {
auto exit_msg = fmt::format(res.signal ? "signalled {}" : "exited {}",

Loading…
Cancel
Save