Skip to content

Commit

Permalink
Fix output path
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchLeaders committed Jan 13, 2024
1 parent e2147b6 commit 11e5604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BymlLibrary.Runner/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
ImmutableByml immutableByml = new(ref reader);

string yaml = immutableByml.ToYaml();
File.WriteAllText(".\Output.yml", yaml);
File.WriteAllText("./Output.yml", yaml);

Byml byml = Byml.FromText(yaml);
byml.WriteBinary(args[1], immutableByml.Endianness);
Expand Down

0 comments on commit 11e5604

Please sign in to comment.