mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 16:51:55 +00:00
11 lines
229 B
Bash
Executable File
11 lines
229 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
GCP_PROJECT="sourcegraph-local-dev"
|
|
|
|
function emit_headers() {
|
|
echo "{\"headers\":{\"Authorization\":[\"Bearer ${1}\"]}}"
|
|
}
|
|
|
|
emit_headers "$(gcloud --project ${GCP_PROJECT} auth print-access-token)"
|
|
exit 0
|