|
@@ -1,9 +1,5 @@
|
|
|
name: unicode fix
|
|
name: unicode fix
|
|
|
description: idk just got it from Fatal
|
|
description: idk just got it from Fatal
|
|
|
-inputs:
|
|
|
|
|
- kernel_version:
|
|
|
|
|
- description: 'Kernel version (6.1)'
|
|
|
|
|
- required: true
|
|
|
|
|
|
|
|
|
|
runs:
|
|
runs:
|
|
|
using: composite
|
|
using: composite
|
|
@@ -12,9 +8,9 @@ runs:
|
|
|
shell: bash
|
|
shell: bash
|
|
|
run: |
|
|
run: |
|
|
|
cd "$COMMON"
|
|
cd "$COMMON"
|
|
|
- echo "detected kernel version: ${{ inputs.kernel_version }}"
|
|
|
|
|
|
|
+ echo "detected kernel version: $KERNEL_VERSION"
|
|
|
|
|
|
|
|
- if [[ ${{ inputs.kernel_version }} == 6.* ]]; then
|
|
|
|
|
|
|
+ if [[ $KERNEL_VERSION == 6.* ]]; then
|
|
|
cp "$KERNEL_PATCHES/common/unicode_bypass_fix_6.1+.patch" .
|
|
cp "$KERNEL_PATCHES/common/unicode_bypass_fix_6.1+.patch" .
|
|
|
patch -p1 < unicode_bypass_fix_6.1+.patch
|
|
patch -p1 < unicode_bypass_fix_6.1+.patch
|
|
|
else
|
|
else
|