Skip to content

Commit

Permalink
build: Add message about patches that will be applied
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
  • Loading branch information
patrickelectric committed Oct 20, 2023
1 parent a8dee11 commit 751e0c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ pub fn main() {
if let Ok(dir) = read_dir(patch_dir) {
for entry in dir {
if let Ok(entry) = entry {
println!("cargo:info=Add patch: {:?}", &entry.path());
match Command::new("git")
.arg("apply")
.arg(entry.path().as_os_str())
Expand Down

0 comments on commit 751e0c5

Please sign in to comment.