Skip to content

Commit

Permalink
Merge pull request #217 from alan-turing-institute/more-docs-tweaks
Browse files Browse the repository at this point in the history
Update docs
  • Loading branch information
thobson88 authored Nov 23, 2024
2 parents 0d6ac11 + 8f1596f commit 4c25cf1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ Environment variables are defined in your Terminal configuration file. Since we

To do this, run the following command:
```console
$ echo "export SHELL_CONFIG=" $(find ~/.*shrc -maxdepth 0 | head -n 1) | sed 's/= /=/g' >> $(find ~/.*shrc -maxdepth 0 | head -n 1)
$ SHELL_CONFIG=$(find ~/.*shrc -maxdepth 0 | head -n 1) && echo "export SHELL_CONFIG=$SHELL_CONFIG" >> $SHELL_CONFIG
```
**Then close and reopen the Terminal window that you're working in**, so that the change takes effect. Now check that the new environment variable exists:
Now check that the new environment variable exists:
```console
$ echo $SHELL_CONFIG
```
Expand Down
12 changes: 6 additions & 6 deletions docs/ion.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ In all cases, administrator privileges are required.

### Prerequisites

!!! info "Create the `SHELL_CONFIG` environment variable"

Before continuing, make sure you have created the `SHELL_CONFIG` environment variable by following the instructions on the [Getting Started](getting-started.md#environment-variables) page.

Run the following commands to set up your environment.

=== "Linux"

Update the package lists on your machine:
```console
$ sudo apt update
```
and install essential build tools:
Update the package lists on your machine and install essential build tools:
```console
$ sudo apt install build-essential
$ sudo apt update && sudo apt install build-essential
```
Install Git:
```console
Expand Down

0 comments on commit 4c25cf1

Please sign in to comment.