Skip to content

Commit

Permalink
Fix remnant of beta testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dhinakg committed May 1, 2021
1 parent 7d9cddc commit b0c855f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,10 @@ def build_kext(self):

else:
personality = {
"CFBundleIdentifier": "tk.dhinakg.PortRemover",
"IOClass": "PortRemover",
"CFBundleIdentifier": "com.dhinakg.USBToolBox.kext",
"IOClass": "USBToolBox",
"IOProviderClass": "IOPCIDevice",
"IOMatchCategory": "PortRemover",
"IOMatchCategory": "USBToolBox",
} | self.choose_matching_key(
controller
) # type: ignore
Expand Down Expand Up @@ -597,7 +597,7 @@ def build_kext(self):
template["IOKitPersonalities"][personality_name] = personality

if not self.settings["use_native"]:
template["OSBundleLibraries"] = {"tk.dhinakg.PortRemover": "1.0.1d1"}
template["OSBundleLibraries"] = {"com.dhinakg.USBToolBox.kext": "1.0.0"}

write_path = Path("UTBMap.kext")

Expand Down

0 comments on commit b0c855f

Please sign in to comment.