Skip to content

Commit

Permalink
Adapt to GitHub Actions folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeugma440 committed Apr 15, 2023
1 parent 9687668 commit d8032b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ATL.test/TestUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static string GetResourceLocationRoot(bool includeFinalSeparator = true)
{
locationRoot = Environment.CurrentDirectory;

locationRoot = locationRoot.Substring(0, locationRoot.IndexOf(REPO_NAME) + REPO_NAME.Length);
locationRoot = locationRoot.Substring(0, locationRoot.LastIndexOf(REPO_NAME) + REPO_NAME.Length);

locationRoot += Path.DirectorySeparatorChar + "ATL.test" + Path.DirectorySeparatorChar + "Resources";
}
Expand Down

0 comments on commit d8032b3

Please sign in to comment.