Skip to content

Commit 620476e

Browse files
committed
fix
1 parent d637f57 commit 620476e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/fetchGrazChains.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
MAX_RETRIES=5
2+
MAX_RETRIES=10
33
command_exists() {
44
command -v "$1" >/dev/null 2>&1
55
}
@@ -19,7 +19,7 @@ fetch_graz_chains() {
1919
while [ $retry_count -lt $MAX_RETRIES ]; do
2020
echo "Attempt $((retry_count + 1)) to fetch cosmos chains..."
2121

22-
if graz generate -g -b; then
22+
if graz generate -g; then
2323
echo "Successfully fetched cosmos chains!"
2424
return 0
2525
else

0 commit comments

Comments
 (0)