mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
In scripts/setup/terminate-psql-sessions line 5:
[ "$1" = "`echo -e "$1\n$2" | sort -V | tail -n1`" ]
^-- SC2006: Use $(..) instead of legacy `..`.
^-- SC1117: Backslash is literal in "\n". Prefer explicit escaping: "\\n".
In scripts/setup/terminate-psql-sessions line 20:
major=$(echo $version | cut -d. -f1,2)
^-- SC2086: Double quote to prevent globbing and word splitting.
In scripts/setup/terminate-psql-sessions line 24:
tables=$(echo "'$@'" | sed "s/ /','/g")
^-- SC2145: Argument mixes string and array. Use * or separate argument.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
||
|---|---|---|
| .. | ||
| configure-rabbitmq | ||
| flush-memcached | ||
| generate_secrets.py | ||
| generate-self-signed-cert | ||
| initialize-database | ||
| install | ||
| packagecloud.asc | ||
| pgroonga-debian.asc | ||
| pgroonga-ppa.asc | ||
| postgres-create-db | ||
| postgres-init-db | ||
| setup-certbot | ||
| terminate-psql-sessions | ||
| zulip-ppa.asc | ||