From 38b37eea70a58a7f9e334f9f85dbc4e4ad3d373e Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Mon, 26 May 2025 02:19:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=8B=D0=B2=D0=BE=D0=B4=20=D1=82=D0=BE?= =?UTF-8?q?=D0=BB=D1=8C=D0=BA=D0=BE=20=D0=BF=D0=B5=D1=80=D0=B2=D0=BE=D0=B9?= =?UTF-8?q?=20=D1=81=D1=82=D1=80=D0=BE=D0=BA=D0=B8=20git=20=D1=81=D0=BE?= =?UTF-8?q?=D0=BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=BF=D1=80=D0=B8?= =?UTF-8?q?=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/snag/core/core.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/snag/core/core.d b/source/snag/core/core.d index 63f51d8..e528ab1 100644 --- a/source/snag/core/core.d +++ b/source/snag/core/core.d @@ -35,11 +35,11 @@ class Snag { currentTime.second); } - private auto git(string[] command, string message, string separator = ":\n") { + private auto git(string[] command, string message, string separator = ":\n\t") { auto result = execute(_baseCommand ~ command); if (result.status) throw new SnagException( - message ~ separator ~ result.output + message ~ separator ~ result.output.split('\n')[0] ); return result; }