Commit 6031fc41 authored by Matt Solomon's avatar Matt Solomon

style: replace printf with two echos

parent 591d885f
......@@ -73,7 +73,8 @@ fi
# If slither failed to generate a report, exit with an error.
if [ ! -f "$SLITHER_REPORT" ]; then
printf "Slither output:\n%s\n" "$SLITHER_OUTPUT"
echo "Slither output:"
echo "$SLITHER_OUTPUT"
echo "Slither failed to generate a report."
if [ -e "$SLITHER_REPORT_BACKUP" ]; then
mv $SLITHER_REPORT_BACKUP $SLITHER_REPORT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment