We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99bd2f8 commit 1ef24fcCopy full SHA for 1ef24fc
2 files changed
.github/workflows/CI.yaml
@@ -13,7 +13,7 @@ jobs:
13
steps:
14
- uses: actions/checkout@v1
15
- name: run gofmt
16
- run: test -z "$(gofmt -d . | tee /dev/tty)"
+ run: test -z "$(gofmt -d . | tee >&2)"
17
buildifier:
18
runs-on: ubuntu-latest
19
container: docker://golang:1.13
pkg/blobstore/cloud_blob_access.go
@@ -15,7 +15,7 @@ import (
)
type cloudBlobAccess struct {
- bucket *blob.Bucket
+ bucket *blob.Bucket
keyPrefix string
20
storageType StorageType
21
}
0 commit comments