What problem does this solve? Please describe.
In batch connect if the run_script isn't executable, it will fail to run.
It's this line here.
Describe the solution you'd like
This should likely chmod +x the file isn't executable so that we can correctly execute the file.
Describe alternatives you've considered (optional)
We could source it if it isn't, but I don't know the difference between source and ./ to really understand if it'd be better or now.
Additional context
None.
What problem does this solve? Please describe.
In batch connect if the
run_scriptisn't executable, it will fail to run.It's this line here.
ood_core/lib/ood_core/batch_connect/template.rb
Line 314 in 438820c
Describe the solution you'd like
This should likely
chmod +xthe file isn't executable so that we can correctly execute the file.Describe alternatives you've considered (optional)
We could
sourceit if it isn't, but I don't know the difference betweensourceand./to really understand if it'd be better or now.Additional context
None.