From 1615fa63e38a8500e9d0513ca8b2406c3cbe55fc Mon Sep 17 00:00:00 2001 From: Eric Wolf <19wolf@gmail.com> Date: Sat, 30 Sep 2017 16:34:38 -0400 Subject: [PATCH] Update basic-install.sh Fixed comment line 40 --- automated install/basic-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index 2cf2c61d..1775a8d9 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -37,7 +37,7 @@ QUERY_LOGGING=true INSTALL_WEB=true -# Find the rows and columns will default to 80x24 is it can not be detected +# Find the rows and columns will default to 80x24 if it can not be detected screen_size=$(stty size 2>/dev/null || echo 24 80) rows=$(echo "${screen_size}" | awk '{print $1}') columns=$(echo "${screen_size}" | awk '{print $2}')