Skip to content

Commit

Permalink
Change dump output directories
Browse files Browse the repository at this point in the history
  • Loading branch information
FWDekker committed Feb 5, 2019
1 parent d413880 commit 5ba9712
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion tabular/Edit scripts/ExportTabularGLOB.pas
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ function Finalize: integer;
begin
if (outputLines.Count > 0) then
begin
outputLines.SaveToFile('fo76_dump_globs.csv');
CreateDir('dumps/');
outputLines.SaveToFile('dumps/GLOB.csv');
end;
end;

Expand Down
3 changes: 2 additions & 1 deletion tabular/Edit scripts/ExportTabularGMST.pas
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ function Finalize: integer;
begin
if (outputLines.Count > 0) then
begin
outputLines.SaveToFile('fo76_dump_gmst.csv');
CreateDir('dumps/');
outputLines.SaveToFile('dumps/GMST.csv');
end;
end;

Expand Down
3 changes: 2 additions & 1 deletion tabular/Edit scripts/ExportTabularIDs.pas
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ function Finalize: integer;
begin
if (outputLines.Count > 0) then
begin
outputLines.SaveToFile('fo76_dump_ids.csv');
CreateDir('dumps/');
outputLines.SaveToFile('dumps/IDs.csv');
end;
end;

Expand Down
3 changes: 2 additions & 1 deletion wiki/Edit scripts/ExportWikiNOTE.pas
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ function Finalize: integer;
begin
if (outputLines.Count > 0) then
begin
outputLines.SaveToFile('fo76_dump_note.wiki');
CreateDir('dumps/');
outputLines.SaveToFile('dumps/NOTE.wiki');
end;
end;

Expand Down

0 comments on commit 5ba9712

Please sign in to comment.