We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bdde60 commit 95a53ddCopy full SHA for 95a53dd
src/commands/mobile_app/upload.rs
@@ -75,9 +75,7 @@ pub fn execute(matches: &ArgMatches) -> Result<()> {
75
let byteview = ByteView::open(path)?;
76
debug!("Loaded file with {} bytes", byteview.len());
77
78
- #[cfg(target_os = "macos")]
79
if is_apple_app(path) {
80
- // Find all asset catalogs
81
handle_asset_catalogs(path);
82
}
83
src/utils/mobile_app/apple.rs
@@ -10,6 +10,7 @@ mod macos {
10
11
12
pub fn handle_asset_catalogs(path: &Path) {
13
+ // Find all asset catalogs
14
let cars = find_car_files(path);
15
for car in &cars {
16
inspect_asset_catalog(car);
0 commit comments