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 c3a8a18 commit 6c52de1Copy full SHA for 6c52de1
.github/scripts/find_new_boards.sh
@@ -17,6 +17,13 @@ echo $Boards_modified_url
17
# Download the modified boards.txt file
18
curl -L -o boards_pr.txt $Boards_modified_url
19
20
+# Check if the file is downloaded
21
+if [ ! -f boards_pr.txt ]
22
+then
23
+ echo "Error: boards.txt file not downloaded"
24
+ exit 1
25
+fi
26
+
27
# Compare boards.txt file in the repo with the modified file
28
diff=$(diff -u boards.txt boards_pr.txt)
29
0 commit comments