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
This commit is contained in:
Natalie Weizenbaum 2018-11-19 16:38:15 -08:00 committed by GitHub
parent aa52cf1474
commit f914c39067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,7 +53,7 @@ updateBazel() async {
arguments: [ arguments: [
"push", "push",
"https://$username:$password@github.com/bazelbuild/rules_sass.git", "https://$username:$password@github.com/bazelbuild/rules_sass.git",
"master:master" "HEAD:master"
], ],
workingDirectory: repo); workingDirectory: repo);
} }