Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f1366f8

Browse files
authored
Fix equality comparison in generate_templates.sh
1 parent 5a1aa4d commit f1366f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate_templates.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cd $(dirname $0)/../cpython/Doc/locales
2020

2121
# Python 3.7: Add missing sections to satisfy Blurb's check
2222
# Useful if setup.sh was not ran
23-
if [[ ${PYDOC_VERSION} == '3.7' ]] && [ ! -f ../../114553.patch ]; then
23+
if [ ${PYDOC_VERSION} = '3.7' ] && [ ! -f ../../114553.patch ]; then
2424
curl -L https://github.com/python/cpython/pull/114553.patch -o ../../114553.patch
2525
git apply ../../114553.patch
2626
fi

0 commit comments

Comments
 (0)