cfoulc / cf

mod's and modules for VCV Rack
BSD 3-Clause "New" or "Revised" License
58 stars 16 forks source link

.gitignore improperly ignores all files starting with **plugin** (affects all branches) #49

Closed neoh4x0r closed 1 year ago

neoh4x0r commented 1 year ago

All branches (v2, v1, etc) has the following in .gitingore:

plugin.*
dist/
build/

This results in the following files being ignored (they aren't included in a checkout/clone)

I believe the intention was to ignore plugin.so and plugin.dll

So the contents of .gitingore should be

plugin.so
plugin.dll
dist/
build/
neoh4x0r commented 1 year ago

This was fixed in 9509b744621b200d96bc8136d126d5e8090da74f (it won't ingore plugin.json any more, but should still be updated to ignore plugin.so, plugin.dll, plugin.dylib)