Procházet zdrojové kódy

Merge pull request #12209 from thalesmg/fix-schema-file-typo-r54-20231220

ci: fix typo in file name
Thales Macedo Garitezi před 2 roky
rodič
revize
471877598e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      apps/emqx_conf/src/emqx_conf.erl

+ 1 - 1
apps/emqx_conf/src/emqx_conf.erl

@@ -188,7 +188,7 @@ gen_schema_json(Dir, SchemaModule, Lang) ->
 gen_preformat_md_json_files(Dir, StructsJsonArray, Lang) ->
     NestedStruct = reformat_schema_dump(StructsJsonArray),
     %% write to files
-    NestedJsonFile = filename:join([Dir, "schmea-v2-" ++ Lang ++ ".json"]),
+    NestedJsonFile = filename:join([Dir, "schema-v2-" ++ Lang ++ ".json"]),
     io:format(user, "===< Generating: ~s~n", [NestedJsonFile]),
     ok = file:write_file(
         NestedJsonFile, emqx_utils_json:encode(NestedStruct, [pretty, force_utf8])