aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorPloughPuff <ploughpuff@protonmail.com>2019-01-28 14:51:31 +0000
committerBond-009 <bond.009@outlook.com>2019-01-31 18:56:34 +0100
commitebd2a3008791ac4043a775d48f0971a554bd9ff4 (patch)
treeee764dabd6b09221c535ec82cc1a1f9735b060e3 /Emby.Server.Implementations
parentfd361421b120b103b2abaf1e3b36c6715887afe4 (diff)
Accept single-hyphen usage and rename -programdatadir to -datadir
For backwards compatibility, modify the args[] strings to replace single-hyphens with double-hyphens before parsing. Also rename -programdatadir to -datadir.
Diffstat (limited to 'Emby.Server.Implementations')
-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; }