From 88d4cc1a6a323bc69523d8587fe64b22fc5ff313 Mon Sep 17 00:00:00 2001 From: asonix Date: Wed, 16 Aug 2023 16:34:42 -0500 Subject: [PATCH] Exit after repo migration --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index aabf9e5..15c0905 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1921,6 +1921,7 @@ impl PictRsConfiguration { let to = Repo::open(to)?.to_arc(); repo::migrate_repo(from, to).await?; + return Ok(()); } }