diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-07-22 16:12:16 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-07-22 16:32:46 +0200 |
commit | 473a804822ffb134a8115c826bddbdfdede8674a (patch) | |
tree | 1124f60f9184a58902815dbe897ad89c331d0f11 /src/other_tools/ops_maps | |
parent | d88c275024293126958705af61c1c75e7229354c (diff) | |
download | justbuild-473a804822ffb134a8115c826bddbdfdede8674a.tar.gz |
import-to-git: fix typo in format string
Diffstat (limited to 'src/other_tools/ops_maps')
-rw-r--r-- | src/other_tools/ops_maps/import_to_git_map.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/other_tools/ops_maps/import_to_git_map.cpp b/src/other_tools/ops_maps/import_to_git_map.cpp index 51a4548e..ddbfa115 100644 --- a/src/other_tools/ops_maps/import_to_git_map.cpp +++ b/src/other_tools/ops_maps/import_to_git_map.cpp @@ -199,10 +199,11 @@ auto CreateImportToGitMap( [logger, target_path](auto const& msg, bool fatal) { (*logger)( - fmt::format("While doing keep commit " - "and setting Git tree:\n{}", - target_path.string(), - msg), + fmt::format( + "While doing keep commit " + "and setting Git tree {}:\n{}", + target_path.string(), + msg), fatal); }); KeepCommitAndSetTree(critical_git_op_map, |