Skip to content

Commit

Permalink
fixed gen-manifest iconUri name
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Mar 18, 2024
1 parent 6dbdca1 commit f166404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/gen-manifest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ struct HomebrewManifest {
title: String,
#[serde(skip_serializing_if = "Option::is_none")]
app_description: Option<String>,
icon_url: String,
icon_uri: String,
source_url: String,
#[serde(skip_serializing_if = "Option::is_none")]
root_required: Option<RootRequired>,
Expand All @@ -83,7 +83,7 @@ fn main() {
r#type: app_info.r#type,
title: app_info.title,
app_description: app_info.app_description,
icon_url: args.icon,
icon_uri: args.icon,
source_url: args.link,
root_required: args.root,
ipk_url: String::from(args.pkgfile.file_name().unwrap().to_string_lossy()),
Expand Down

0 comments on commit f166404

Please sign in to comment.