Skip to content

Commit

Permalink
Update Runner.cs
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Tsfoni <80639729+mtsfoni@users.noreply.github.com>
  • Loading branch information
mtsfoni authored Jun 6, 2024
1 parent bc5305f commit 1b93ca2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CycloneDX/Runner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public async Task<int> HandleCommandAsync(RunOptions options)
}
else if (Utils.IsSupportedProjectType(SolutionOrProjectFile) && scanProjectReferences)
{
if(!fileSystem.File.Exists(SolutionOrProjectFile)
if(!fileSystem.File.Exists(SolutionOrProjectFile))
{
Console.Error.WriteLine($"No file found at path {SolutionOrProjectFile}");
return (int)ExitCode.InvalidOptions;
Expand All @@ -180,7 +180,7 @@ public async Task<int> HandleCommandAsync(RunOptions options)
else if (Utils.IsSupportedProjectType(SolutionOrProjectFile))
{

if(!fileSystem.File.Exists(SolutionOrProjectFile)
if(!fileSystem.File.Exists(SolutionOrProjectFile))
{
Console.Error.WriteLine($"No file found at path {SolutionOrProjectFile}");
return (int)ExitCode.InvalidOptions;
Expand Down

0 comments on commit 1b93ca2

Please sign in to comment.