Skip to content

Commit

Permalink
makefile: Fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stevezhengshiqi committed Oct 10, 2021
1 parent 0ff2bf9 commit fec91c9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions makefile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -678,8 +678,11 @@ function unpack() {
if [[ "${model_input}" =~ "KBL" ]] && [[ "${pre_release}" != *Kext* ]]; then
(cd "KBL" && unzip -qq ./*.zip || exit 1)
fi
cp -R IntelBluetoothFirmware*/IntelBluetoothFirmware.kext "./" || copyErr
cp -R IntelBluetoothFirmware*/IntelBluetoothInjector.kext "./" || copyErr
# Move IntelBluetooth*.kext to parent folder when download from GitHub Release
if [[ "${pre_release}" != *"Kext"* ]]; then
cp -R IntelBluetoothFirmware*/IntelBluetoothFirmware.kext "./" || copyErr
cp -R IntelBluetoothFirmware*/IntelBluetoothInjector.kext "./" || copyErr
fi
echo
}

Expand Down

0 comments on commit fec91c9

Please sign in to comment.