diff --git a/README.md b/README.md index f07d9d83e4c0ce..8d264ecbfc8835 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Ona Banner](https://github.com/user-attachments/assets/68f8c148-07da-4831-a6f6-ff4d1f1ec321) -## Gitpod Classic +## Gitpod Classic Gitpod Classic is a developer platform providing on-demand, pre-configured development environments in the cloud. It allows developers to spin up secure workspaces with a simple .gitpod.yml configuration file, eliminating the need for manual environment setup. The platform integrates seamlessly with GitHub, GitLab, Bitbucket, and Azure DevOps, offering features like prebuilt environments, collaborative code reviews, and professional developer experience with VS Code extensions and customization options. Workspaces are ephemeral, secure, and based on Docker, providing developers with the same capabilities as their local Linux machines but in a consistent, reproducible cloud environment. diff --git a/dev/github-token.sh b/dev/github-token.sh index 8be07b2260e6e7..4672480b7123dd 100755 --- a/dev/github-token.sh +++ b/dev/github-token.sh @@ -8,11 +8,11 @@ if [ -z "$GH_TOKEN" ] && command -v git >/dev/null 2>&1; then # Attempt to get token from git credentials, suppress errors TOKEN=$(printf 'protocol=https\nhost=github.com\n' | git credential fill 2>/dev/null | awk -F= '/password/ {print $2}' 2>/dev/null) - + # Only export if we got a non-empty token if [ -n "$TOKEN" ]; then export GH_TOKEN="$TOKEN" fi - + unset TOKEN fi