File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -199,12 +199,12 @@ check_missing_packages () {
199
199
# check if WSL
200
200
# check WSL for interop setting make sure its disabled
201
201
# check WSL for kernel version look for version 4.19.128 current as of 11/01/2020
202
- if uname -a | grep -q -- " -microsoft" ; then
202
+ if uname -a | grep -iq -- " -microsoft" ; then
203
203
if cat /proc/sys/fs/binfmt_misc/WSLInterop | grep -q enabled ; then
204
204
echo " windows WSL detected: you must first disable 'binfmt' by running this
205
205
sudo bash -c 'echo 0 > /proc/sys/fs/binfmt_misc/WSLInterop'
206
206
then try again"
207
- exit 1
207
+ # exit 1
208
208
fi
209
209
export MINIMUM_KERNEL_VERSION=" 4.19.128"
210
210
KERNVER=$( uname -a | awk -F' [ ]' ' { print $3 }' | awk -F- ' { print $1 }' )
@@ -216,7 +216,7 @@ check_missing_packages () {
216
216
if [ $( version $KERNVER ) -lt $( version $MINIMUM_KERNEL_VERSION ) ]; then
217
217
echo " Windows Subsystem for Linux (WSL) detected - kernel not at minumum version required: $MINIMUM_KERNEL_VERSION
218
218
Please update via windows update then try again"
219
- exit 1
219
+ # exit 1
220
220
fi
221
221
echo " for WSL ubuntu 20.04 you need to do an extra step https://github.com/rdp/ffmpeg-windows-build-helpers/issues/452"
222
222
fi
You can’t perform that action at this time.
0 commit comments