Skip to content
This repository has been archived by the owner on Apr 19, 2021. It is now read-only.

Commit

Permalink
minor tweaks to wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Hellum committed Feb 4, 2020
1 parent f899f8f commit 2fdd863
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/docs/bash-in-gitpod.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bash in Gitpod

Bash is the default shell for Gitpod. However, if you're developing a Bash script yourself, you may want to configure additional language support for Bash.
Bash is the default shell for Gitpod. However, if you're developing a Bash script yourself, you may want to configure additional language support.

## Bash Examples

Expand All @@ -16,9 +16,9 @@ Bash is the default shell for Gitpod. However, if you're developing a Bash scrip

### ShellCheck

ShellCheck provides linting for common mistakes in your shell script
ShellCheck provides linting for common mistakes in your shell script.

To use ShellCheck in Gitpod, first, we must install the `shellcheck` tool. Here is a Dockerfile to get you started.
To use ShellCheck in Gitpod, first, we must install the `shellcheck` tool. Here is a simple Dockerfile to get you started:

```Dockerfile
FROM gitpod/workspace-full
Expand All @@ -28,7 +28,7 @@ USER gitpod
RUN brew install shellcheck
```

You should also install the shellcheck VS Code extension in Gitpod, e.g. by adding a [`.gitpod.yml`](https://www.gitpod.io/docs/41_config_gitpod_file/) configuration file to your repository that looks like this (notice the `vscode` extensions section):
You should also install the shellcheck VS Code extension in Gitpod, by adding a [`.gitpod.yml`](https://www.gitpod.io/docs/41_config_gitpod_file/) configuration file to your repository that looks like this (notice the `vscode` extensions section):

```yaml
image:
Expand Down

0 comments on commit 2fdd863

Please sign in to comment.