github-actions[bot] commented on PR #13143:
URL: https://github.com/apache/doris/pull/13143#issuecomment-1271753206

   #### `sh-checker report`
   
   To get the full details, please check in the 
[job]("https://github.com/apache/doris/actions/runs/3205943559";) output.
   
   <details>
   <summary>shellcheck errors</summary>
   
   ```
   
   'shellcheck ' returned error 1 finding the following syntactical issues:
   
   ----------
   
   In docker/thirdparties/docker-compose/mysql/mysql-5.7-env.sh line 1:
   DOCKER_MYSQL_57_INTERNAL_PORT=3306
   ^-- SC2148 (error): Tips depend on target shell and yours is unknown. Add a 
shebang or a 'shell' directive.
   ^---------------------------^ SC2034 (warning): 
DOCKER_MYSQL_57_INTERNAL_PORT appears unused. Verify use (or export if used 
externally).
   
   
   In docker/thirdparties/docker-compose/mysql/mysql-5.7-env.sh line 2:
   DOCKER_MYSQL_57_EXTERNAL_PORT=3316
   ^---------------------------^ SC2034 (warning): 
DOCKER_MYSQL_57_EXTERNAL_PORT appears unused. Verify use (or export if used 
externally).
   
   
   In docker/thirdparties/docker-compose/mysql/mysql-5.7-env.sh line 3:
   DOCKER_MYSQL_57_DATA_DIR=./data/
   ^----------------------^ SC2034 (warning): DOCKER_MYSQL_57_DATA_DIR appears 
unused. Verify use (or export if used externally).
   
   
   In docker/thirdparties/docker-compose/postgresql/postgresql-14-env.sh line 1:
   DOCKER_PG_14_INTERNAL_PORT=5432
   ^-- SC2148 (error): Tips depend on target shell and yours is unknown. Add a 
shebang or a 'shell' directive.
   ^------------------------^ SC2034 (warning): DOCKER_PG_14_INTERNAL_PORT 
appears unused. Verify use (or export if used externally).
   
   
   In docker/thirdparties/docker-compose/postgresql/postgresql-14-env.sh line 2:
   DOCKER_PG_14_EXTERNAL_PORT=5442
   ^------------------------^ SC2034 (warning): DOCKER_PG_14_EXTERNAL_PORT 
appears unused. Verify use (or export if used externally).
   
   
   In docker/thirdparties/docker-compose/postgresql/postgresql-14-env.sh line 3:
   DOCKER_PG_14_DATA_DIR=./data/data/
   ^-------------------^ SC2034 (warning): DOCKER_PG_14_DATA_DIR appears 
unused. Verify use (or export if used externally).
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 28:
   docker compose -f ${ROOT}/docker-compose/elasticsearch/elasticsearch.yaml 
down
                     ^-----^ SC2086 (info): Double quote to prevent globbing 
and word splitting.
   
   Did you mean: 
   docker compose -f "${ROOT}"/docker-compose/elasticsearch/elasticsearch.yaml 
down
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 29:
   docker compose -f ${ROOT}/docker-compose/elasticsearch/elasticsearch.yaml up 
-d
                     ^-----^ SC2086 (info): Double quote to prevent globbing 
and word splitting.
   
   Did you mean: 
   docker compose -f "${ROOT}"/docker-compose/elasticsearch/elasticsearch.yaml 
up -d
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 32:
   mkdir -p ${ROOT}/docker-compose/mysql/data/
            ^-----^ SC2086 (info): Double quote to prevent globbing and word 
splitting.
   
   Did you mean: 
   mkdir -p "${ROOT}"/docker-compose/mysql/data/
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 33:
   rm ${ROOT}/docker-compose/mysql/data/* -rf
      ^-----^ SC2086 (info): Double quote to prevent globbing and word 
splitting.
   
   Did you mean: 
   rm "${ROOT}"/docker-compose/mysql/data/* -rf
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 34:
   docker compose -f ${ROOT}/docker-compose/mysql/mysql-5.7.yaml --env-file 
${ROOT}/docker-compose/mysql/mysql-5.7-env.sh down
                     ^-----^ SC2086 (info): Double quote to prevent globbing 
and word splitting.
                                                                            
^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.
   
   Did you mean: 
   docker compose -f "${ROOT}"/docker-compose/mysql/mysql-5.7.yaml --env-file 
"${ROOT}"/docker-compose/mysql/mysql-5.7-env.sh down
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 35:
   docker compose -f ${ROOT}/docker-compose/mysql/mysql-5.7.yaml --env-file 
${ROOT}/docker-compose/mysql/mysql-5.7-env.sh up -d
                     ^-----^ SC2086 (info): Double quote to prevent globbing 
and word splitting.
                                                                            
^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.
   
   Did you mean: 
   docker compose -f "${ROOT}"/docker-compose/mysql/mysql-5.7.yaml --env-file 
"${ROOT}"/docker-compose/mysql/mysql-5.7-env.sh up -d
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 38:
   mkdir -p ${ROOT}/docker-compose/postgresql/data/data
            ^-----^ SC2086 (info): Double quote to prevent globbing and word 
splitting.
   
   Did you mean: 
   mkdir -p "${ROOT}"/docker-compose/postgresql/data/data
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 39:
   rm ${ROOT}/docker-compose/postgresql/data/data/* -rf
      ^-----^ SC2086 (info): Double quote to prevent globbing and word 
splitting.
   
   Did you mean: 
   rm "${ROOT}"/docker-compose/postgresql/data/data/* -rf
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 40:
   docker compose -f ${ROOT}/docker-compose/postgresql/postgresql-14.yaml 
--env-file ${ROOT}/docker-compose/postgresql/postgresql-14-env.sh down
                     ^-----^ SC2086 (info): Double quote to prevent globbing 
and word splitting.
                                                                                
     ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.
   
   Did you mean: 
   docker compose -f "${ROOT}"/docker-compose/postgresql/postgresql-14.yaml 
--env-file "${ROOT}"/docker-compose/postgresql/postgresql-14-env.sh down
   
   
   In docker/thirdparties/start-thirdparties-docker.sh line 41:
   docker compose -f ${ROOT}/docker-compose/postgresql/postgresql-14.yaml 
--env-file ${ROOT}/docker-compose/postgresql/postgresql-14-env.sh up -d
                     ^-----^ SC2086 (info): Double quote to prevent globbing 
and word splitting.
                                                                                
     ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.
   
   Did you mean: 
   docker compose -f "${ROOT}"/docker-compose/postgresql/postgresql-14.yaml 
--env-file "${ROOT}"/docker-compose/postgresql/postgresql-14-env.sh up -d
   
   For more information:
     https://www.shellcheck.net/wiki/SC2148 -- Tips depend on target shell and 
y...
     https://www.shellcheck.net/wiki/SC2034 -- DOCKER_MYSQL_57_DATA_DIR appears 
...
     https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing 
...
   ----------
   
   You can address the above issues in one of three ways:
   1. Manually correct the issue in the offending shell script;
   2. Disable specific issues by adding the comment:
     # shellcheck disable=NNNN
   above the line that contains the issue, where NNNN is the error code;
   3. Add '-e NNNN' to the SHELLCHECK_OPTS setting in your .yml action file.
   
   
   
   ```
   </details>
   
   <details>
   <summary>shfmt errors</summary>
   
   ```
   'shfmt ' found no issues.
   
   ```
   </details>
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to