Skip to content

Commit

Permalink
Use the delimiter argument for exporting CSV files. (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaben authored Sep 11, 2023
1 parent 5707f9c commit 998b584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/Squidex.CLI/Squidex.CLI/Commands/App_Contents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ await session.ExportAsync(arguments, log, async entity =>
{
var csvOptions = new CsvConfiguration(CultureInfo.InvariantCulture)
{
Delimiter = ";"
Delimiter = arguments.Delimiter
};

await using (var writer = new CsvWriter(streamWriter, csvOptions))
Expand Down

0 comments on commit 998b584

Please sign in to comment.