From 1430d2d88a81395cdb6ee6fcb62a8ca2f39ac142 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Thu, 13 Oct 2011 20:45:07 +0200 Subject: [PATCH] fixed typo Signed-off-by: Sven Strickroth --- src/TortoiseProc/Commands/BisectCommand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TortoiseProc/Commands/BisectCommand.cpp b/src/TortoiseProc/Commands/BisectCommand.cpp index a7aae87cc..8ae97e0cb 100644 --- a/src/TortoiseProc/Commands/BisectCommand.cpp +++ b/src/TortoiseProc/Commands/BisectCommand.cpp @@ -38,8 +38,8 @@ bool BisectCommand::Execute() if (parser.HasVal(_T("closeonend"))) progress.m_bAutoCloseOnSuccess = parser.GetLongVal(_T("closeonend")); progress.m_GitCmdList.push_back(_T("git.exe bisect start")); - progress.m_GitCmdList.push_back(_T("git.exe good ") + bisectStartDlg.m_LastGoodRevision); - progress.m_GitCmdList.push_back(_T("git.exe bad ") + bisectStartDlg.m_FirstBadRevision); + progress.m_GitCmdList.push_back(_T("git.exe bisect good ") + bisectStartDlg.m_LastGoodRevision); + progress.m_GitCmdList.push_back(_T("git.exe bisect bad ") + bisectStartDlg.m_FirstBadRevision); if (path.HasSubmodules()) progress.m_PostCmdList.Add(_T("Update Submodules")); -- 2.11.4.GIT