Skip to content

Commit 963cb5e

Browse files
committed
more renaming for consistency
1 parent 5ed41df commit 963cb5e

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.PHONY: build-executable
22
build-executable:
3-
cd exercises_downloader && \
3+
cd exercise_downloader && \
44
cargo build --release
55

66
.PHONY: download-exercises
77
download-exercises:
88
$(MAKE) build-executable && \
9-
exercises_downloader/target/release/pybites-rust-download && \
9+
exercise_downloader/target/release/pybites-rust-download && \
1010
echo ... all done

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Exercise downloader for https://rustplatform.com/
33

44
## quickstart
55

6-
- install the `exercise_downloader` directly from GitHub, open a terminal and run:
6+
- install the exercise downloader directly from GitHub, open a terminal and run:
77
```shell
88
cargo install --git https://github.com/markgreene74/pybites_rust.git
99
```
@@ -20,7 +20,7 @@ Maybe you want to have a look at the code, make some changes, try something new.
2020
- clone the repo and cd to the directory project
2121
- compile the downloader
2222
```shell
23-
cd exercises_downloader && \
23+
cd exercise_downloader && \
2424
cargo build --release
2525
```
2626
- cd back to the project main directory
@@ -29,7 +29,7 @@ Maybe you want to have a look at the code, make some changes, try something new.
2929
```
3030
- run the downloader from the project main directory
3131
```shell
32-
./exercises_downloader/target/release/pybites-rust-download
32+
./exercise_downloader/target/release/pybites-rust-download
3333
```
3434
- the downloader will create `exercises` in the current directory
3535

@@ -50,7 +50,7 @@ Using `cargo` to install it from GitHub.
5050
(...)
5151
5252
53-
Compiling pybites-rust-download v0.1.2 (/my/home/.cargo/git/checkouts/pybites_rust-b497f94da89af8aa/d1afb2e/pybites-rust-download)
53+
Compiling pybites-rust-download v0.1.2 (/my/home/.cargo/git/checkouts/pybites_rust-b497f94da89af8aa/d1afb2e/excercise_downloader)
5454
Finished `release` profile [optimized] target(s) in 15.61s
5555
Installing /my/home/.cargo/bin/pybites-rust-download
5656
Installed package `pybites-rust-download v0.1.0 (https://github.com/markgreene74/pybites_rust.git#d1afb2ec)` (executable `pybites-rust-download`) /15.8s
@@ -63,10 +63,10 @@ Using `make` to compile and execute the exercise downloader.
6363
```shell
6464
➜ make download-exercises
6565
make build-executable && \
66-
exercises_downloader/target/release/pybites-rust-download && \
66+
exercise_downloader/target/release/pybites-rust-download && \
6767
echo ... all done
6868
make[1]: Entering directory '/my/home/github/pybites_rust'
69-
cd exercises_downloader && \
69+
cd exercise_downloader && \
7070
cargo build --release
7171
Finished `release` profile [optimized] target(s) in 0.06s
7272
make[1]: Leaving directory '/my/home/github/pybites_rust'

0 commit comments

Comments
 (0)