Skip to content
This repository was archived by the owner on Mar 22, 2024. It is now read-only.

Commit ba86ef8

Browse files
committed
Pass -y to rustup-init
1 parent d5c416c commit ba86ef8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.devcontainer/setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ apt-get install -y \
99
zsh
1010

1111
## Install rustup and common components
12-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
12+
curl https://sh.rustup.rs -sSf | sh -s -- -y
1313
rustup install nightly
1414
rustup component add rustfmt
1515
rustup component add rustfmt --toolchain nightly

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ For usage in VS Codespaces, you're going to want to head over to [online.visuals
4545

4646
- Ensure you're on the `/environments` page at [online.visualstudio.com/environments](https://online.visualstudio.com/environments)
4747
- In the top right corner, there'll be a "Create environment" button. Click this button, which will open up a panel from the right side of the screen. Fill in the details of this panel:
48-
- **Environment Name:** This will be the visible name of your environment within Codespaces. The value here doesn't particularly matter - I'm going to use `tinycloud`.
48+
- **Codespace Name:** This will be the visible name of your environment within Codespaces. The value here doesn't particularly matter.
4949
- **Git Repository:** This is going to be either the URL you'd `git clone` the repo from or the GitHub `<org OR user>/<repo>` shorthand. For this repo, the easier value would be `codespaces-examples/base`.
5050
- **Instance Type:** For this, you're going to choose your plan - in my case, I'm just going to go with the `Standard (Linux)` plan. For most use cases of this starter, `Basic (Linux)` should suffice. You can also change your plan at any time, as your workload demands.
5151
- **Suspend idle environment after:** This is the period of time you want your environment to automatically suspend after you've stopped actively using it. I generally chose 5 minutes and have not had any problems to date.

0 commit comments

Comments
 (0)