Skip to content

Commit

Permalink
Fix bad path
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Jul 3, 2024
1 parent cb6b38d commit 115b375
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected ProfiledApplication(string projectName, params string[] folders)
profilerFile = "libelastic_apm_profiler.dylib";

_profilerPath = TestEnvironment.IsLinux ?
Path.Combine(SolutionPaths.Root, "target", "x86_64-unknown-linux-gnu/release", "release", profilerFile) :
Path.Combine(SolutionPaths.Root, "target", "x86_64-unknown-linux-gnu", "release", profilerFile) :
Path.Combine(SolutionPaths.Root, "target", "release", profilerFile);

if (!File.Exists(_profilerPath))
Expand Down

0 comments on commit 115b375

Please sign in to comment.