We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6669cc8 commit 6b032e3Copy full SHA for 6b032e3
run-tool-tests.sh
@@ -1,5 +1,8 @@
1
#!/bin/bash
2
3
+# Initialize failed tools file
4
+echo "" > /tmp/failed_tools.txt
5
+
6
# Check if tool name is provided
7
if [ -z "$1" ]; then
8
echo "Usage: $0 <tool_name>"
@@ -56,7 +59,7 @@ fi
56
59
cd ../../../../..
57
60
58
61
# Check if any tools failed
-if [ -f /tmp/failed_tools.txt ]; then
62
+if [ -s /tmp/failed_tools.txt ]; then
63
echo -e "\n❌ The following tools failed their tests:"
64
cat /tmp/failed_tools.txt
65
rm /tmp/failed_tools.txt
0 commit comments