From c14f96391aebc325c758c8320c5426712208ea69 Mon Sep 17 00:00:00 2001 From: Yury Date: Wed, 4 May 2022 19:12:14 +0200 Subject: [PATCH] checkout: --relink show helpful message on completion --- dvc/commands/checkout.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dvc/commands/checkout.py b/dvc/commands/checkout.py index c396b10d39..768872d602 100644 --- a/dvc/commands/checkout.py +++ b/dvc/commands/checkout.py @@ -55,6 +55,10 @@ def run(self): if exc: raise exc + + if self.args.relink: + msg = "Relinked successfully" + ui.write(msg) return 0