From 90ad65b5890c58426b67599507cf848fee85b6d2 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sat, 18 Jan 2020 15:58:12 +0000 Subject: [PATCH] Improved commit behavior. --- repository/Fossil/FossilRepo.class.st | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/repository/Fossil/FossilRepo.class.st b/repository/Fossil/FossilRepo.class.st index 034b19c..3a832ac 100644 --- a/repository/Fossil/FossilRepo.class.st +++ b/repository/Fossil/FossilRepo.class.st @@ -70,9 +70,7 @@ FossilRepo >> commit: message [ arguments: { 'commit' . '--no-warnings' . '-m' . message }; workingDirectory: self localFolderName; redirectStdout; - runAndWaitOnExitDo: [ :process :outString | - Transcript show: message. - ^ outString ] + runAndWaitOnExitDo: [ :process :outString | ^ outString ] ] { #category : #wiki }