chore(bin/emqx): no need to disable SC2086

This commit is contained in:
Zaiming (Stone) Shi 2022-10-11 17:41:47 +02:00
parent 124f9795cd
commit cfd1d7eea1
1 changed files with 1 additions and 1 deletions

View File

@ -483,7 +483,7 @@ esac
if [ "$IS_BOOT_COMMAND" = 'no' ]; then if [ "$IS_BOOT_COMMAND" = 'no' ]; then
# for non-boot commands, inspect vm.<time>.args for node name # for non-boot commands, inspect vm.<time>.args for node name
# shellcheck disable=SC2012,SC2086 # shellcheck disable=SC2012
LATEST_VM_ARGS_FILE="$(ls -t "$RUNNER_DATA_DIR"/configs/vm.*.args 2>/dev/null | head -1)" LATEST_VM_ARGS_FILE="$(ls -t "$RUNNER_DATA_DIR"/configs/vm.*.args 2>/dev/null | head -1)"
if [ -z "$LATEST_VM_ARGS_FILE" ]; then if [ -z "$LATEST_VM_ARGS_FILE" ]; then
echoerr "There is no vm.*.args config file found in '$RUNNER_DATA_DIR/configs/'" echoerr "There is no vm.*.args config file found in '$RUNNER_DATA_DIR/configs/'"