scztt / vscode-supercollider

MIT License
56 stars 6 forks source link

Intentional overwrites must be put in a 'SystemOverwrites' subfolder #48

Open prko opened 5 months ago

prko commented 5 months ago

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.