FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-docs-pt-br/scripts/lint.sh at migrate-shell-to-python · python/python-docs-pt-br · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
python-docs-pt-br
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
41
Star
161
Code
Issues
13
Pull requests
4
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-docs-pt-br
/
scripts
/
lint.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
52 lines (40 loc) · 1.31 KB
Breadcrumbs
python-docs-pt-br
/
scripts
/
lint.sh
Copy path
File metadata and controls
executable file
·
52 lines (40 loc) · 1.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!
/bin/sh
#
Build translated docs to pop up errors
#
#
SPDX-License-Identifier: CC0-1.0
set
-xeu
#
Fail earlier if required variables are not set
test
-n
${PYDOC_LANGUAGE+x}
#
Fail earlier if sphinx-lint is not installed
sphinx-lint --help
>
/dev/null
rootdir=
$(
realpath
$(
dirname
$0
)
/..
)
cd
"
$rootdir
"
mkdir -p logs
touch logs/sphinxlint.txt
cd
cpython/Doc
#
If version is 3.12 or newer, then generate POT disabling literal blocks and
#
update translations with fresh POT files. If version 3.11 or older,
#
disable new 'unnecessary-parentheses' check, not fixed before these versions.
minor_version=
$(
git branch --show-current
|
sed
'
s|^3\.||
'
)
if
[
$minor_version
-ge
12 ]
;
then
make gettext SPHINXOPTS=
'
-q -Dgettext_additional_targets=["index"]
'
sphinx-intl update -p build/gettext -l
${PYDOC_LANGUAGE}
>
/dev/null
else
alias
sphinx-lint=
'
sphinx-lint --disable unnecessary-parentheses
'
fi
cd
locales/
${PYDOC_LANGUAGE}
/LC_MESSAGES
set
+e
sphinx-lint
2>
$(
realpath
"
$rootdir
/logs/sphinxlint.txt
"
)
set
-e
#
Undo changes to undo literal blocks disabling
git checkout
.
cd
"
$rootdir
"
#
Check of logfile is empty
if
[
!
-s
logs/sphinxlint.txt ]
;
then
#
OK, it is empty. Remove it.
rm logs/sphinxlint.txt
else
#
print contents and exit with error status (to trigger notification in CI)
cat logs/sphinxlint.txt
exit
1
fi
Back
|
FazBrowse Home
|
New Git URL