Skip to content

Commit

Permalink
Wait longer before running the Bazel task. (#1212)
Browse files Browse the repository at this point in the history
This is still consistently failing to see the newly-uploaded npm
package.
  • Loading branch information
nex3 committed Jan 20, 2021
1 parent 9005c6b commit 27c899e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/grind/bazel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Future<void> updateBazel() async {
} on ProcessException catch (error) {
if (error.stderr.contains("Couldn't find any versions for \"sass\"")) {
log("The new sass version doesn't seem to be available yet, waiting 30s...");
await Future<void>.delayed(Duration(seconds: 30));
await Future<void>.delayed(Duration(minutes: 2));
run("yarn", workingDirectory: p.join(repo, "sass"));
}
}
Expand Down

0 comments on commit 27c899e

Please sign in to comment.