Skip to content

Commit 15d3e71

Browse files
committed
Autofix: trailing-spaces
1 parent a2227ff commit 15d3e71

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Ona Banner](https://github.com/user-attachments/assets/68f8c148-07da-4831-a6f6-ff4d1f1ec321)
44

5-
## Gitpod Classic
5+
## Gitpod Classic
66

77
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.
88

dev/github-token.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
if [ -z "$GH_TOKEN" ] && command -v git >/dev/null 2>&1; then
99
# Attempt to get token from git credentials, suppress errors
1010
TOKEN=$(printf 'protocol=https\nhost=github.com\n' | git credential fill 2>/dev/null | awk -F= '/password/ {print $2}' 2>/dev/null)
11-
11+
1212
# Only export if we got a non-empty token
1313
if [ -n "$TOKEN" ]; then
1414
export GH_TOKEN="$TOKEN"
1515
fi
16-
16+
1717
unset TOKEN
1818
fi

0 commit comments

Comments
 (0)