Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/steps/4-personalize-codespace.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ Let's see how this works!
![codespace1](https://user-images.githubusercontent.com/26442605/207355196-71aab43f-35a9-495b-bcfe-bf3773c2f1b3.png)

1. From inside the codespace in the VS Code explorer window, create a new file `setup.sh`.
1. Add the following code inside of the file:
1. Enter the following code into the file:

```bash
#!/bin/bash

sudo apt-get update
sudo apt-get install sl
alias sl="/usr/games/sl"
export PATH=$PATH:/usr/games
```

1. Save the file.
Expand Down