File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ check-changelog-entry:
52
52
poetry run python scripts/check_version_in_changelog.py
53
53
54
54
build-api-reference :
55
- cd website && ./build_api_reference.sh
55
+ cd website && poetry run ./build_api_reference.sh
56
56
57
57
run-doc : build-api-reference
58
58
cd website && npm clean-install && npm run start
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ sed_no_backup() {
11
11
}
12
12
13
13
# Create docspec dump of this package's source code through pydoc-markdown
14
- poetry run pydoc-markdown --quiet --dump > docspec-dump.jsonl
14
+ pydoc-markdown --quiet --dump > docspec-dump.jsonl
15
15
sed_no_backup " s#${PWD} /..#REPO_ROOT_PLACEHOLDER#g" docspec-dump.jsonl
16
16
17
17
# Create docpec dump from the right version of the apify-shared package
@@ -24,7 +24,7 @@ sed_no_backup "s#search_path: \[../src\]#search_path: \[./src\]#g" "${apify_shar
24
24
(
25
25
cd " ${apify_shared_tempdir} " ;
26
26
git checkout --quiet " v${apify_shared_version} " ;
27
- poetry run pydoc-markdown --quiet --dump > ./apify-shared-docspec-dump.jsonl
27
+ pydoc-markdown --quiet --dump > ./apify-shared-docspec-dump.jsonl
28
28
)
29
29
30
30
cp " ${apify_shared_tempdir} /apify-shared-docspec-dump.jsonl" .
You can’t perform that action at this time.
0 commit comments