Skip to content

Commit

Permalink
Merge #11656
Browse files Browse the repository at this point in the history
11656: Fix package.json key replacement r=lnicola a=lnicola

CC #11653

bors r+

Co-authored-by: Laurențiu Nicola <[email protected]>
  • Loading branch information
bors[bot] and lnicola authored Mar 8, 2022
2 parents 722cc00 + a87e673 commit 0f5df8e
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#""enabledApiProposals": true,"#, r#""#);
.replace(r#""enabledApiProposals": [],"#, r#""#);
patch.commit()?;

Ok(())
Expand Down

0 comments on commit 0f5df8e

Please sign in to comment.