update gitignore and sync_file_list doc

This commit is contained in:
Pakin 2025-09-09 15:19:50 +07:00
parent c753e40ffd
commit eeaf5c1dab
3 changed files with 8 additions and 3 deletions

View file

@ -4,7 +4,7 @@
use std::fs::File;
use chrono::{DateTime, Utc};
use rayon::iter::{ParallelBridge, ParallelIterator};
use rayon::iter::{IntoParallelIterator, ParallelBridge, ParallelIterator};
use tar::Archive;
use crate::recipe_functions::common::{self, EnumAsValue};
@ -281,7 +281,7 @@ impl XBuilder {
self.base = Some(base);
}
/// get last commit that should add to file
/// get file from commit(s) that should be added to newer firmware file
pub fn sync_file_list(&mut self) -> Vec<String> {
let mut result = Vec::new();