Hi, I recently updated all my installed Quarks by evaluating the following code:```
Quarks.all.do{ |quark| quark.update() }
After doing this, the following warning appears when recompiling the sc class library:
>WARNING: Extension in '/Users/prko/Library/Application Support/SuperCollider/downloaded-quarks/LanguageServer/SystemOverrides/extServer.sc' overwrites Meta_Server:fromName in main class library.
WARNING: Extension in '/Users/prko/Library/Application Support/SuperCollider/downloaded-quarks/LanguageServer/SystemOverrides/extServer.sc' overwrites Server:addr_ in main class library.
Intentional overwrites must be put in a 'SystemOverwrites' subfolder.
The name of the `SystemOverrides` folder should be `SystemOverwrites`.
After changing `SystemOverrides` to `SystemOverwrites`, the warnings no longer appear.
Hi, I recently updated all my installed Quarks by evaluating the following code:``` Quarks.all.do{ |quark| quark.update() }