Skip to content

Commit 4ecfd75

Browse files
authored
Don't include ">" in bash scripts
This makes copying inconvenient as `> ./x.py build -i --stage 1 src/libstd` will actually render your `x.py` file empty...
1 parent 522bcb4 commit 4ecfd75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/how-to-build-and-run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ Once you've created a config.toml, you are now ready to run
294294
probably the best "go to" command for building a local rust:
295295

296296
```bash
297-
> ./x.py build -i --stage 1 src/libstd
297+
./x.py build -i --stage 1 src/libstd
298298
```
299299

300300
This may *look* like it only builds libstd, but that is not the case.

0 commit comments

Comments
 (0)