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.
2 parents d631f0f + 3a7e7dd commit 1b55eacCopy full SHA for 1b55eac
external/buildscripts/bee
@@ -1,2 +1,9 @@
1
#!/bin/sh
2
-mono bee.exe "$@"
+attempt=0
3
+until [ "$attempt" -ge 10 ]
4
+do
5
+ mono bee.exe "$@" && break
6
+ attempt=$((attempt+1))
7
+ sleep 5
8
+ echo "\nRetry running bee... $attempt"
9
+done
0 commit comments