Skip to content

Commit 95a53dd

Browse files
committed
Fixes
1 parent 8bdde60 commit 95a53dd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/commands/mobile_app/upload.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ pub fn execute(matches: &ArgMatches) -> Result<()> {
7575
let byteview = ByteView::open(path)?;
7676
debug!("Loaded file with {} bytes", byteview.len());
7777

78-
#[cfg(target_os = "macos")]
7978
if is_apple_app(path) {
80-
// Find all asset catalogs
8179
handle_asset_catalogs(path);
8280
}
8381

src/utils/mobile_app/apple.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ mod macos {
1010
}
1111

1212
pub fn handle_asset_catalogs(path: &Path) {
13+
// Find all asset catalogs
1314
let cars = find_car_files(path);
1415
for car in &cars {
1516
inspect_asset_catalog(car);

0 commit comments

Comments
 (0)