From 5eed0190905d6184586f6da84372fdf700eb6245 Mon Sep 17 00:00:00 2001 From: Dylan Perks <11160611+Perksey@users.noreply.github.com> Date: Mon, 10 Jun 2024 22:00:04 -0500 Subject: [PATCH] Don't force include *everything* --- build/nuke/Native/Core.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/nuke/Native/Core.cs b/build/nuke/Native/Core.cs index a21e5ae597..685b0bb661 100644 --- a/build/nuke/Native/Core.cs +++ b/build/nuke/Native/Core.cs @@ -66,7 +66,8 @@ public void PrUpdatedNativeBinary(string name) Git("fetch --all", RootDirectory); Git("pull"); - Git($"add -f src/Native/*/runtimes/*/native/* **/*.aar **/*.java", RootDirectory); + Git("add -f src/Native/*/runtimes/*/native/*", RootDirectory); + Git("add **/*.aar **/*.java", RootDirectory); var newBranch = $"ci/{curBranch}/{name.ToLower().Replace(' ', '_')}_bins"; var curCommit = GitCurrentCommit(RootDirectory); var commitCmd = InheritedShell