Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'xtask/src/release.rs')
| -rw-r--r-- | xtask/src/release.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/release.rs b/xtask/src/release.rs index bfbe955696..4a30691477 100644 --- a/xtask/src/release.rs +++ b/xtask/src/release.rs @@ -65,7 +65,7 @@ impl flags::Release { let contents = changelog::get_changelog(sh, changelog_n, &commit, prev_tag, &today)?; let path = changelog_dir.join(format!("{today}-changelog-{changelog_n}.adoc")); - sh.write_file(&path, &contents)?; + sh.write_file(path, contents)?; Ok(()) } |