rice-solar-physics / HYDRAD

HYDrodynamics and RADiation Code for computing solutions to field-aligned hydrodynamic equations in coronal loops
MIT License
9 stars 4 forks source link

Minor issue: Case sensitivity in mesh.cpp #38

Closed jwreep closed 5 years ago

jwreep commented 5 years ago

Please update Line 2123 in mesh.cpp:

pHYDRADConfigFile = fopen( "HYDRAD/config/hydrad.cfg", "w" );

to

pHYDRADConfigFile = fopen( "HYDRAD/config/HYDRAD.cfg", "w" );

This can cause two files to spawn on Mac systems because filenames are case sensitive.

sjbradshaw commented 5 years ago

Done!

From: jwreep notifications@github.com Sent: Tuesday, February 19, 2019 8:56 AM To: rice-solar-physics/HYDRAD HYDRAD@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [rice-solar-physics/HYDRAD] Minor issue: Case sensitivity in mesh.cpp (#38)

Please update Line 2123 in mesh.cpp:

pHYDRADConfigFile = fopen( "HYDRAD/config/hydrad.cfg", "w" );

to

pHYDRADConfigFile = fopen( "HYDRAD/config/HYDRAD.cfg", "w" );

This can cause two files to spawn on Mac systems because filenames are case sensitive.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rice-solar-physics/HYDRAD/issues/38 , or mute the thread https://github.com/notifications/unsubscribe-auth/AIXhfn09jz6z0AVZXivKQtUxEumVU1JYks5vPBB3gaJpZM4bDJTB . https://github.com/notifications/beacon/AIXhflaKvigmOI0OrIM9aRfW49Vi7idrks5vPBB3gaJpZM4bDJTB.gif

jwreep commented 5 years ago

Great, thanks!