debug: dumps are saved in separate folder
Moved it from "binaries/" to "binaries/dump/"
This commit is contained in:
parent
f4941d8bb1
commit
9f81a538f6
1 changed files with 2 additions and 1 deletions
|
@ -220,7 +220,8 @@ local function table_dump_to_file(dumped_table, dumped_table_name, max_depth)
|
|||
-- ## Saving to file ##
|
||||
-- ####################
|
||||
|
||||
local file = assert(io.open(dumped_table_name .. ".json", "w+"))
|
||||
os.execute("mkdir dump 2>nul")
|
||||
local file = assert(io.open("./dump/" .. dumped_table_name .. ".json", "w+"))
|
||||
|
||||
local function dump_to_file(table_entry, table_name, depth)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue