Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In scripts/lib/install line 71: ZULIP_PATH="$(readlink -f $(dirname $0)/../..)" ^-- SC2046: Quote this to prevent word splitting. ^-- SC2086: Double quote to prevent globbing and word splitting. In scripts/lib/install line 105: mem_kb=$(cat /proc/meminfo | head -n1 | awk '{print $2}') ^-- SC2002: Useless cat. Consider 'cmd < file | ..' or 'cmd file | ..' instead. In scripts/lib/install line 141: apt-get -y dist-upgrade $APT_OPTIONS ^-- SC2086: Double quote to prevent globbing and word splitting. In scripts/lib/install line 145: $ADDITIONAL_PACKAGES ^-- SC2086: Double quote to prevent globbing and word splitting. In scripts/lib/install line 254: if [ -n "ZULIP_ADMINISTRATOR" ]; then ^-- SC2157: Argument to -n is always true due to literal strings. Signed-off-by: Anders Kaseorg <[email protected]>
- Loading branch information