From e03db95d1170fb1fa2ae535295c9f2b2f4f42046 Mon Sep 17 00:00:00 2001 From: Autofix Date: Fri, 9 Jan 2026 03:05:41 +0000 Subject: [PATCH] Autofix: trailing-spaces --- README.md | 2 +- dev/github-token.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 77dab5b88665ad..b847cba09c6f72 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