Thanks to visit codestin.com Credit goes to github.com
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 12fad78 commit 2797f58Copy full SHA for 2797f58
.github/scripts/build.sh
@@ -1,6 +1,7 @@
1
#!/bin/bash
2
3
set -e
4
+set -u
5
set -o pipefail
6
7
error() {
@@ -14,4 +15,4 @@ cd cpython/Doc || exit 1
14
15
mkdir -p locales/"$LOCALE"/
16
ln -sfn "$(realpath ../../docs)" locales/"$LOCALE"/LC_MESSAGES
17
pip3 install -q -r requirements.txt
-sphinx-build -b dummy -d build/doctrees -j auto -D language=$LOCALE -D gettext_compact=0 -W --keep-going -W . build/html 2> >(error)
18
+sphinx-build -b dummy -d build/doctrees -j auto -D language=$LOCALE -D gettext_compact=0 -W --keep-going -W . build/html 2> >(error)
.github/scripts/update.sh
@@ -1,5 +1,7 @@
+
cd cpython || exit 1
# Restore git timestamp for enabling build cache
0 commit comments