7 lines
No EOL
233 B
Bash
Executable file
7 lines
No EOL
233 B
Bash
Executable file
set -o pipefail
|
|
sh .ci/lint.sh 2>&1 | tee output_tmp.txt
|
|
echo "\`\`\`" > output.txt
|
|
grep 'msg=' output_tmp.txt | awk -F'msg="' '{print $2}' | sed 's/"$//' | sed 's/\\"/"/g' >> output.txt
|
|
echo $?
|
|
echo "\`\`\`" >> output.txt
|
|
echo "END" |