Roblox / foreman

Toolchain manager for Roblox projects
MIT License
171 stars 26 forks source link

Fix artifact selection bug #53

Closed ZoteTheMighty closed 2 years ago

ZoteTheMighty commented 2 years ago

Artifact selection uses an outer loop over all assets, and an inner loop over possible valid names. This means that it will pick the first asset that matches any valid names, instead of the best match for the earliest name in the list.

The fix should just be to switch the loops!