mirror of https://github.com/ventoy/Ventoy.git
Fix the issue that Fedora Rawhide install media not detected. (#2283)
This commit is contained in:
parent
b47aa1abc7
commit
e869bc2386
|
@ -125,6 +125,13 @@ if $GREP -i -q Fedora /proc/version; then
|
|||
fi
|
||||
fi
|
||||
|
||||
if $GREP -i -q Fedora /etc/os-release; then
|
||||
if $GREP -q 'Server Edition' /etc/os-release; then
|
||||
vtNeedRepo="yes"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
echo "vtNeedRepo=$vtNeedRepo" >> $VTLOG
|
||||
|
||||
if [ "$vtNeedRepo" = "yes" ]; then
|
||||
|
|
Loading…
Reference in New Issue