Clean stderr in case of /etc/os-release does not exist (#6835)

This commit is contained in:
Adrien Ferrand
2019-03-11 15:42:32 -07:00
committed by Brad Warren
parent 674ba896eb
commit 81d9b5250e
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -749,8 +749,8 @@ elif [ -f /etc/redhat-release ]; then
unset LE_PYTHON
DeterminePythonVersion "NOCRASH"
# Starting to Fedora 29, python2 is on a deprecation path. Let's move to python3 then.
RPM_DIST_NAME=`(. /etc/os-release && echo $ID) || echo "unknown"`
RPM_DIST_VERSION=`(. /etc/os-release && echo $VERSION_ID) || echo "0"`
RPM_DIST_NAME=`(. /etc/os-release 2> /dev/null && echo $ID) || echo "unknown"`
RPM_DIST_VERSION=`(. /etc/os-release 2> /dev/null && echo $VERSION_ID) || echo "0"`
if [ "$RPM_DIST_NAME" = "fedora" -a "$RPM_DIST_VERSION" -ge 29 -o "$PYVER" -eq 26 ]; then
Bootstrap() {
BootstrapMessage "RedHat-based OSes that will use Python3"