Skip to content

Commit

Permalink
Find make task dirs in root
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Feb 24, 2025
1 parent 3927330 commit 430cfa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/MakeTasks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public abstract class MakeTask(string location, ProcessArgumentBuilder? args = n
public override void Run(BuildContext context)
{
var exitCode = context.StartProcess("make", new ProcessSettings() {
WorkingDirectory = Location,
WorkingDirectory = context.Paths.RootDirectory.Combine(Location),
Arguments = Args,
EnvironmentVariables = new Dictionary<string, string?> { { "CONFIGURATION", context.BuildConfiguration } }
});
Expand Down

0 comments on commit 430cfa8

Please sign in to comment.