Browse Source

Added newline where one was missing due to addition of chomp in shellex

spesk1 4 years ago
parent
commit
425622871c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      sg

+ 2 - 2
sg

@@ -325,13 +325,13 @@ if ( defined $args{'push-all'} ) {
 		}
 
 		my $gitOutput = pushChanges($logger);
-		print "Git returned:\n$gitOutput";
+		print "Git returned:\n$gitOutput\n";
 
 	} else {
 
 		pushChanges($logger);
 		my $gitOutput = pushChanges($logger);
-		print "Git returned:\n$gitOutput";
+		print "Git returned:\n$gitOutput\n";
 
 	}