Skip to content

Commit

Permalink
Don't force include *everything*
Browse files Browse the repository at this point in the history
  • Loading branch information
Perksey committed Jun 11, 2024
1 parent db59a45 commit 5eed019
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/nuke/Native/Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5eed019

Please sign in to comment.