Browse Source

Minor log issue fix (again)

Trying to re-add the commit to see if it was just a temporary Travis bug or not.
Fixes #1307 (again)
UltimateByte 9 năm trước cách đây
mục cha
commit
ed51b44818
1 tập tin đã thay đổi với 6 bổ sung6 xóa
  1. 6 6
      lgsm/functions/command_start.sh

+ 6 - 6
lgsm/functions/command_start.sh

@@ -85,15 +85,15 @@ fn_start_tmux(){
 
 	# tmux pipe-pane not supported in tmux versions < 1.6
 	if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ]; then
-		echo "Console logging disabled: Tmux => 1.6 required" >> "${consolelog}"
-		echo "https://gameservermanagers.com/tmux-upgrade" >> "${consolelog}"
-		echo "Currently installed: $(tmux -V)" >> "${consolelog}"
+		echo "Console logging disabled: Tmux => 1.6 required
+		https://gameservermanagers.com/tmux-upgrade
+		Currently installed: $(tmux -V)" > "${consolelog}"
 
 	# Console logging disabled: Bug in tmux 1.8 breaks logging
 	elif [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -eq "18" ]; then
-		echo "Console logging disabled: Bug in tmux 1.8 breaks logging" >> "${consolelog}"
-		echo "https://gameservermanagers.com/tmux-upgrade" >> "${consolelog}"
-		echo "Currently installed: $(tmux -V)" >> "${consolelog}"
+		echo "Console logging disabled: Bug in tmux 1.8 breaks logging
+		https://gameservermanagers.com/tmux-upgrade
+		Currently installed: $(tmux -V)" > "${consolelog}"
 
 	# Console logging enable or not set
 	elif [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then