Skip to content

Commit

Permalink
Adding additional alias for api key
Browse files Browse the repository at this point in the history
  • Loading branch information
ayende committed May 18, 2012
1 parent 2c01862 commit 08b2cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Raven.Smuggler/Program.cs
Expand Up @@ -53,7 +53,7 @@ private Program()
{"u|user|username:", "The username to use when the database requires the client to authenticate.", value => Credentials.UserName = value},
{"p|pass|password:", "The password to use when the database requires the client to authenticate.", value => Credentials.Password = value},
{"domain:", "The domain to use when the database requires the client to authenticate.", value => Credentials.Domain = value},
{"key|api-key:", "The API-key to use, when using OAuth.", value => connectionStringOptions.ApiKey = value},
{"key|api-key|apikey:", "The API-key to use, when using OAuth.", value => connectionStringOptions.ApiKey = value},
{"incremental", "States usage of incremental operations", _ => incremental = true },
{"h|?|help", v => PrintUsageAndExit(0)},
};
Expand Down

0 comments on commit 08b2cf8

Please sign in to comment.