We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d56f500 commit 5b0f0eaCopy full SHA for 5b0f0ea
.gitignore
@@ -4,3 +4,5 @@ misc
4
5
NOTES.md
6
TODO.md
7
+
8
+artifacts/python-for-coding-interview-v*.pdf
USAGE.md
@@ -7,11 +7,10 @@ docker build -t pfci:latest .
# Linter
docker run --rm pfci:latest make linter
9
# Generate PDF
10
-docker run --rm -v %cd%\artifacts:/repo/artifacts pfci:latest make pdf
+docker run --rm -v %cd%\artifacts:/repo/artifacts pfci:latest make pdf # Windows
11
+docker run --rm -v $(pwd)\artifacts:/repo/artifacts pfci:latest make pdf # Linux
12
```
13
-docker run --rm pfci:latest "make pdf &> /dev/null && ls /repos/" > ./artifacts/python-for-coding-interview.pdf
14
-
15
## Without docker
16
17
```text
0 commit comments