From d91824ee408670e237d77f35d6597529c359fc38 Mon Sep 17 00:00:00 2001 From: Shinsuke Higashiyama aka Cinzeng Zia <94058150+sinsukehlab@users.noreply.github.com> Date: Tue, 2 Jul 2024 00:48:29 +0900 Subject: [PATCH] Use export command (#103) --- .github/steps/4-personalize-codespace.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/steps/4-personalize-codespace.md b/.github/steps/4-personalize-codespace.md index dc5142d..ed9a6e5 100644 --- a/.github/steps/4-personalize-codespace.md +++ b/.github/steps/4-personalize-codespace.md @@ -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.