update gitignore and sync_file_list doc
This commit is contained in:
parent
c753e40ffd
commit
eeaf5c1dab
3 changed files with 8 additions and 3 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,2 +1,4 @@
|
|||
/target
|
||||
.DS_Store
|
||||
.DS_Store
|
||||
*.jar
|
||||
**/*/android
|
||||
3
lib/libdl.txt
Normal file
3
lib/libdl.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
git clone https://github.com/skylot/jadx.git
|
||||
cd jadx
|
||||
./gradlew dist
|
||||
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue