Skip to content

Commit

Permalink
[docs][script] fix: Broken web-links in README.md; refactor: `protoc-…
Browse files Browse the repository at this point in the history
…generator.sh`

[scripts] refactor: Simplify `install_dependencies()` function

Update README.md

Co-authored-by: Jan Keromnes <[email protected]>

revert: Refactoriziation of `install_dependencies()`
  • Loading branch information
axonasif committed Apr 21, 2021
1 parent ebcd8ad commit 24aad7e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,24 @@ Tightly integrated with GitLab, GitHub, and Bitbucket, Gitpod automatically and

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

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/).
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).

## Getting Started

You can start using Gitpod with one or more of the following ways:
1. [Use a Prefixed URL](https://www.gitpod.io/docs/context-urls/)
1. [Install Browser Extension](https://www.gitpod.io/docs/browser-extension/)
1. [Enable GitLab Integration](https://www.gitpod.io/docs/gitlab-integration/)
1. [Use a Prefixed URL](https://www.gitpod.io/docs/getting-started/#prefixed-url)
1. [Install Browser Extension](https://www.gitpod.io/docs/getting-started#browser-extension)
1. [Enable GitLab Integration](https://www.gitpod.io/docs/getting-started#gitlab-integration)
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)

## Documentation

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

## Questions

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

You can also follow [`@gitpod`](https://twitter.com/gitpod) for announcements and updates from our team.
Expand Down
6 changes: 5 additions & 1 deletion scripts/protoc-generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ go_protoc() {

typescript_protoc() {
local ROOT_DIR=$1
local MODULE_DIR=$(pwd)
local MODULE_DIR
# Assigning external program output directly
# after the `local` keyword masks the return value (Could be an error).
# Should be done in a separate line.
MODULE_DIR=$(pwd)

pushd typescript > /dev/null

Expand Down

0 comments on commit 24aad7e

Please sign in to comment.