diff --git a/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs b/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs index 73901699..01319c4c 100644 --- a/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs +++ b/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs @@ -31,7 +31,7 @@ public abstract class ExportCommandBase : TokenCommandBase public string OutputPath { get => _outputPath; - // Handle ~/ in paths on *nix systems + // Handle ~/ in paths on Unix systems // https://github.com/Tyrrrz/DiscordChatExporter/pull/903 init => _outputPath = Path.GetFullPath(value); }