ChristianGaser / cat12

Computational Anatomy Toolbox for SPM12
https://neuro-jena.github.io/cat
GNU General Public License v2.0
33 stars 5 forks source link

Finding Windows binaries broken after commit ad9c00d #21

Closed rcassani closed 8 months ago

rcassani commented 8 months ago

The file existence check added in ad9c00d breaks the finding of binaries on Windows.

As findsubfiles() in cat_vol_findfiles.m depends on the full filename (base + extension), but the check is just for the base.

https://github.com/ChristianGaser/cat12/blob/33278bc2c5361603870fa61d0fd9d9c3b87809d7/cat_vol_findfiles.m#L793

ChristianGaser commented 8 months ago

Update to r2560 which should solve that issue…

Christian

Am 07.03.2024 um 20:56 schrieb Raymundo Cassani @.***>:

The file existence check added in ad9c00d breaks the finding of binaries on Windows. As findsubfiles() in cat_vol_findfiles.m depends on the full filename (base + extension), but the check is just for the base. https://github.com/ChristianGaser/cat12/blob/33278bc2c5361603870fa61d0fd9d9c3b87809d7/cat_vol_findfiles.m#L793 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.***>

rcassani commented 8 months ago

@ChristianGaser thanks!