mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
14 lines
382 B
Bash
Executable File
14 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /ClickHouse/utils/check-style || echo -e "failure\tRepo not found" > /test_output/check_status.tsv
|
|
|
|
start_total=$(date +%s)
|
|
|
|
start=$(date +%s)
|
|
./shellcheck-run.sh |& tee /test_output/shellcheck.txt
|
|
runtime=$(($(date +%s)-start))
|
|
echo "Check shellcheck. Done. $runtime seconds."
|
|
|
|
runtime=$(($(date +%s)-start_total))
|
|
echo "Check style total. Done. $runtime seconds."
|