From 377868978d626511f18b593966ab2dfc91a92878 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Wed, 6 Oct 2021 17:19:45 -0600 Subject: [PATCH] bspinfo: write json to .bsp.json for consistency with master branch / automated tests --- bspinfo/bspinfo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bspinfo/bspinfo.cc b/bspinfo/bspinfo.cc index efe05f9e..f26f9fe0 100644 --- a/bspinfo/bspinfo.cc +++ b/bspinfo/bspinfo.cc @@ -324,7 +324,7 @@ int main(int argc, char **argv) LoadBSPFile(source, &bsp); PrintBSPFileSizes(&bsp); - source.replace_extension("json"); + source.replace_extension("bsp.json"); ConvertBSPFormat(&bsp, &bspver_generic); serialize_bsp(bsp, std::get(bsp.bsp), source);