You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,8 @@ Generated with the [advent-of-code-rust](https://github.com/fspoettel/advent-of-
30
30
### Setup new day
31
31
32
32
```sh
33
-
# example: `./scripts/scaffold.sh 1`
34
-
./scripts/scaffold.sh<day>
33
+
# example: `./bin/scaffold 1`
34
+
./bin/scaffold <day>
35
35
36
36
# output:
37
37
# Created module "src/bin/01.rs"
@@ -46,8 +46,8 @@ Every [solution](https://git.io/JyXa8) has _unit tests_ referencing the _example
46
46
### Download inputs for a day
47
47
48
48
```sh
49
-
# example: `./scripts/download.sh 1`
50
-
./scripts/download.sh<day>
49
+
# example: `./bin/download 1`
50
+
./bin/download <day>
51
51
52
52
# output:
53
53
# Loaded session cookie from "/home/felix/.adventofcode.session".
@@ -58,9 +58,9 @@ Every [solution](https://git.io/JyXa8) has _unit tests_ referencing the _example
58
58
# 🎄 Successfully wrote input to "src/inputs/01.txt"!
59
59
```
60
60
61
-
Puzzle inputs are not checked into git. [See here](https://old.reddit.com/r/adventofcode/comments/k99rod/sharing_input_data_were_we_requested_not_to/gf2ukkf/?context=3) why.
61
+
To download inputs for previous years, append the `--year` flag. _(example: `./bin/download 1 --year 2020`)_
62
62
63
-
> This script does not support downloading inputs for previous years. If you want to use this template for a previous aoc, [use the underlying `aoc-cli` binary directly](https://github.com/scarvalhojr/aoc-cli/#download-puzzle-input) or download your inputs manually.
63
+
Puzzle inputs are not checked into git. [See here](https://old.reddit.com/r/adventofcode/comments/k99rod/sharing_input_data_were_we_requested_not_to/gf2ukkf/?context=3) why.
0 commit comments