Skip to content

Commit

Permalink
Merge #11653
Browse files Browse the repository at this point in the history
11653: fix: client distribution string replacement looking for wrong key r=Veykril a=Veykril

cc #11445
bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
  • Loading branch information
bors[bot] and Veykril authored Mar 8, 2022
2 parents 3f4a095 + d425c5b commit 722cc00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fn dist_client(version: &str, release_tag: &str, target: &Target) -> Result<()>
.replace(r#""releaseTag": null"#, &format!(r#""releaseTag": "{}""#, release_tag))
.replace(r#""$generated-start": {},"#, "")
.replace(",\n \"$generated-end\": {}", "")
.replace(r#""enableProposedApi": true,"#, r#""#);
.replace(r#""enabledApiProposals": true,"#, r#""#);
patch.commit()?;

Ok(())
Expand Down

0 comments on commit 722cc00

Please sign in to comment.