From be6a79a09987f14d73319cb2d5e45f11854dbfa6 Mon Sep 17 00:00:00 2001 From: Darya Razumova Date: Tue, 3 Sep 2019 17:43:52 +0300 Subject: [PATCH] Removed pre-commit hook call for step by step switch --- bunch-cli/src/main/kotlin/org/jetbrains/bunches/switch.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bunch-cli/src/main/kotlin/org/jetbrains/bunches/switch.kt b/bunch-cli/src/main/kotlin/org/jetbrains/bunches/switch.kt index bbcef6e..78e1ef4 100644 --- a/bunch-cli/src/main/kotlin/org/jetbrains/bunches/switch.kt +++ b/bunch-cli/src/main/kotlin/org/jetbrains/bunches/switch.kt @@ -222,7 +222,8 @@ fun doStepByStepSwitch(suffixes: List, repoPath: String, commitTitle: St commitChanges( repoPath, branchChanges, - commitTitle.replace("{target}", extension) + commitTitle.replace("{target}", extension), + noVerify = true ) } }