summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/commands/release.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/release.rs b/src/commands/release.rs
index 40daf8e..2910810 100644
--- a/src/commands/release.rs
+++ b/src/commands/release.rs
@@ -163,7 +163,7 @@ async fn new_release(
}
// else !dest_path.exists()
- tokio::fs::rename(art_path, dest_path)
+ tokio::fs::copy(art_path, dest_path)
.await
.map_err(Error::from)
.map(|_| art)