Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/1.11.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiringWorm committed Jun 21, 2020
2 parents eaedad8 + ca47f1f commit 485f597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Codecov/Program/CommandLineOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class CommandLineOptions : IVersionControlSystemOptions, ICoverageOptions
/// A value specifing the enviornment variables to be included with this build. (1)
/// CODECOV_ENV=VAR1,VAR2. (2) -e VAR1 VAR2.
/// </value>
[Option('e', "env", Separator = ' ', HelpText = "Specify enviornment variables to be included with this build. (1) CODECOV_ENV=VAR1,VAR2. (2) -e VAR1 VAR2.")]
[Option('e', "env", HelpText = "Specify enviornment variables to be included with this build. (1) CODECOV_ENV=VAR1,VAR2. (2) -e VAR1 VAR2.")]
public IEnumerable<string> Envs { get; set; }

/// <summary>
Expand All @@ -80,7 +80,7 @@ public class CommandLineOptions : IVersionControlSystemOptions, ICoverageOptions
/// A value specifing the target file(s) to upload. (1) -f 'path/to/file'. Only upload this
/// file. (2) -f 'path/to/file1 path/to/file2'. Only upload these files.
/// </value>
[Option('f', "file", Separator = ' ', HelpText = "Target file(s) to upload. (1) -f 'path/to/file'. Only upload this file. (2) -f 'path/to/file1 path/to/file2'. Only upload these files.")]
[Option('f', "file", HelpText = "Target file(s) to upload.\n(1) -f \"path/to/file\". Only upload this file.\n(2) -f \"path/to/file1\" \"path/to/file2\". Only upload these files.\nNOTE: Make sure to double quote paths if they contain spaces!")]
public IEnumerable<string> Files { get; set; }

/// <summary>
Expand Down

0 comments on commit 485f597

Please sign in to comment.