zulip/tools/setup
Anders Kaseorg fc24d2e147 install-aws-server: Fix shellcheck warnings.
In tools/setup/install-aws-server line 25:
zulip_root=${ZULIP_ROOT:-$HOME/zulip}
^-- SC2034: zulip_root appears unused. Verify use (or export if used externally).

In tools/setup/install-aws-server line 40:
if [ -n "$zulip_confdir" ]; then
         ^-- SC2154: zulip_confdir is referenced but not assigned.

In tools/setup/install-aws-server line 55:
VIRTUALENV_NEEDED=$(if $(echo "$type" | grep -q app_frontend); then echo -n yes; else echo -n no; fi)
                       ^-- SC2091: Remove surrounding $() to avoid executing output.

In tools/setup/install-aws-server line 60:
SSH_OPTS=(-o HostKeyAlgorithms=ssh-rsa)
             ^-- SC2191: The = here is literal. To assign by index, use ( [index]=value ) with no spaces. To keep as literal, quote it.

In tools/setup/install-aws-server line 69:
ssh "${SSH_OPTS[@]}" "$server" -t -i "$amazon_key_file" -lroot <<EOF
                                                                 ^-- SC2087: Quote 'EOF' to make here document expansions happen on the server side rather than on the client.

In tools/setup/install-aws-server line 86:
ssh "${SSH_OPTS[@]}" "$server" -t -i "$amazon_key_file" -lroot <<EOF
                                                                 ^-- SC2087: Quote 'EOF' to make here document expansions happen on the server side rather than on the client.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2018-10-17 17:51:41 -07:00
..
emoji emoji: Remove single-digit names for number emojis. 2018-10-02 11:30:11 -07:00
__init__.py Add __init__.py to tools/ and tools/setup/. 2016-07-20 18:20:37 -07:00
build_pygments_data tools: Rename build_pygments_data.py -> build_pygments_data. 2017-09-26 16:00:41 -07:00
generate-custom-icon-webfont tools: Move generate-custom-icon-webfont to a subdirectory. 2018-08-09 15:39:57 -07:00
generate-fixtures generate-fixtures: Extract zulip_test_template creation as a function. 2018-07-09 09:11:48 +05:30
generate-test-credentials generate-test-credentials: Fix shellcheck warnings. 2018-08-03 09:15:27 -07:00
generate_zulip_bots_static_files tools: Change use of typing.Text to str. 2018-05-13 17:17:32 -07:00
install-aws-server install-aws-server: Fix shellcheck warnings. 2018-10-17 17:51:41 -07:00
lang.json Add typeahead for syntax highlighting languages. 2017-04-28 17:22:59 -07:00
optimize-svg tools: Move optimize-svg to tools/setup/. 2018-08-09 15:39:57 -07:00
postgres-init-dev-db postgres-init-dev-db: Fix shellcheck warnings. 2018-10-17 17:48:57 -07:00
postgres-init-test-db Move tools/install-phantomjs to tools/setup/. 2016-05-26 18:28:14 +05:00
setup_venvs.py setup_venvs.py: Enforce Python 2.7 for zulip-thumbor-venv setup. 2018-01-31 11:29:34 -08:00