Skip to content

Commit 25c7454

Browse files
axonasifaledbf
authored andcommitted
[docs][script] fix: Broken web-links in README.md; refactor: protoc-generator.sh
[scripts] refactor: Simplify `install_dependencies()` function Update README.md Co-authored-by: Jan Keromnes <[email protected]> revert: Refactoriziation of `install_dependencies()`
1 parent 0e2a4a4 commit 25c7454

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,24 @@ Tightly integrated with GitLab, GitHub, and Bitbucket, Gitpod automatically and
3333

3434
[Learn more 👉](https://www.gitpod.io/features/)
3535

36-
Gitpod is provided as a [managed Saas version](https://gitpod.io) with a free subscription for open-source or a [free self-hosted version](https://www.gitpod.io/self-hosted/). An enterprise license is available [here](https://www.gitpod.io/self-hosted/).
36+
Gitpod is provided as a [managed Saas version](https://gitpod.io) with a free subscription for open-source or a [free self-hosted version](https://www.gitpod.io/self-hosted). An enterprise license is available [here](https://www.gitpod.io/self-hosted).
3737

3838
## Getting Started
3939

4040
You can start using Gitpod with one or more of the following ways:
41-
1. [Use a Prefixed URL](https://www.gitpod.io/docs/context-urls/)
42-
1. [Install Browser Extension](https://www.gitpod.io/docs/browser-extension/)
43-
1. [Enable GitLab Integration](https://www.gitpod.io/docs/gitlab-integration/)
41+
1. [Use a Prefixed URL](https://www.gitpod.io/docs/getting-started/#prefixed-url)
42+
1. [Install Browser Extension](https://www.gitpod.io/docs/getting-started#browser-extension)
43+
1. [Enable GitLab Integration](https://www.gitpod.io/docs/getting-started#gitlab-integration)
4444
1. Quick start using an [Example Project](https://www.gitpod.io/docs/getting-started/#example-project) or [OSS Project](https://www.gitpod.io/docs/getting-started/#gitpodified-open-source-project)
4545

4646
## Documentation
4747

48-
All documentation can be found on https://docs.gitpod.io.
49-
For example, see [Introduction](https://www.gitpod.io/docs/) and [Getting Started](https://www.gitpod.io/docs/getting-started/) sections. 📚
48+
All documentation can be found on https://www.gitpod.io/docs.
49+
For example, see [Introduction](https://www.gitpod.io/docs) and [Getting Started](https://www.gitpod.io/docs/getting-started) sections. 📚
5050

5151
## Questions
5252

53-
For questions and support please use the [community forum](http://community.gitpod.io/).
53+
For questions and support please use the [community forum](http://community.gitpod.io).
5454
Join the conversation, and connect with other community members. 💬
5555

5656
You can also follow [`@gitpod`](https://twitter.com/gitpod) for announcements and updates from our team.

scripts/protoc-generator.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ go_protoc() {
2828

2929
typescript_protoc() {
3030
local ROOT_DIR=$1
31-
local MODULE_DIR=$(pwd)
31+
local MODULE_DIR
32+
# Assigning external program output directly
33+
# after the `local` keyword masks the return value (Could be an error).
34+
# Should be done in a separate line.
35+
MODULE_DIR=$(pwd)
3236

3337
pushd typescript > /dev/null
3438

0 commit comments

Comments
 (0)