Skip to content

Commit

Permalink
Update Program.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Happyrobot33 committed May 30, 2024
1 parent 9b02c65 commit 1a018c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CodeCoverage/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static void Main(string[] args)
//check if we can see the Packages folder
Console.WriteLine("Initial Working Directory: " + workingDirectory);
//see if the packages folder exists
if(!Directory.Exists(string.Format("{0}\\Packages", workingDirectory)))
if(!Directory.Exists(Directory.Path.Combine(workingDirectory, "Packages")))

Check failure on line 50 in CodeCoverage/Program.cs

View workflow job for this annotation

GitHub Actions / build-listing

'Directory' does not contain a definition for 'Path'
{
//list everything in this directory
string[] directories = Directory.GetDirectories(workingDirectory);
Expand Down

0 comments on commit 1a018c0

Please sign in to comment.