Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/dev/preview/werft-credential-helper.sh
2492 views
1
#!/bin/bash
2
3
if [[ -f $WERFT_GITHUB_TOKEN_PATH ]]; then
4
cat "$WERFT_GITHUB_TOKEN_PATH"
5
else
6
curl --silent localhost:22999/_supervisor/v1/token/git/github.com/ | jq -r '.token'
7
fi
8
9