Skip to content

Commit

Permalink
fix: fixed broken push on package with registry deps (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoverson authored Aug 24, 2023
1 parent 4668be7 commit 56a8c25
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/wick/wick-package/src/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ fn process_assets(
}
let pdir = parent_dir.clone();
asset.update_baseurl(&pdir);
if !asset.exists_outside_cache() {
continue;
}
let asset_path = asset.path()?; // the resolved, absolute path relative to the config location.
if seen_assets.contains(&asset_path) {
continue;
Expand Down

0 comments on commit 56a8c25

Please sign in to comment.