Skip to content

Commit f914c39

Browse files
authored
Fix pushing to Bazel again (#531)
With #506, we're pushing the master branch to the Bazel repo. But we're actually committing to a detached HEAD, rather than the master branch. This pushes the current HEAD instead. Closes bazelbuild/rules_sass#61
1 parent aa52cf1 commit f914c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool/grind/bazel.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ updateBazel() async {
5353
arguments: [
5454
"push",
5555
"https://$username:$password@github.com/bazelbuild/rules_sass.git",
56-
"master:master"
56+
"HEAD:master"
5757
],
5858
workingDirectory: repo);
5959
}

0 commit comments

Comments
 (0)