aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/StartupOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/StartupOptions.cs')
-rw-r--r--Emby.Server.Implementations/StartupOptions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/StartupOptions.cs b/Emby.Server.Implementations/StartupOptions.cs
index fca60afb8..f4bb94f74 100644
--- a/Emby.Server.Implementations/StartupOptions.cs
+++ b/Emby.Server.Implementations/StartupOptions.cs
@@ -7,8 +7,8 @@ namespace Emby.Server.Implementations
/// </summary>
public class StartupOptions
{
- [Option('d', "programdata", Required = false, HelpText = "Path to use for program data (databases files etc.).")]
- public string PathProgramData { get; set; }
+ [Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (databases files etc.).")]
+ public string PathData { get; set; }
[Option('c', "configdir", Required = false, HelpText = "Path to use for config data (user policies and puctures).")]
public string PathConfig { get; set; }