You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The acetoscan script has a number of lines where files are written to hardcoded paths. For example (there are several, similar cases):
exec > >(tee -a "/home/${user}/acetoscan/"acetoscan_log )
exec 2> >(tee -a "/home/${user}/acetoscan/"acetoscan_log >&2)
The presence of the folder /home/${user}/acetoscan/ should be avoided, and the output files written to a(nother) folder, which can be created at run time.
The
acetoscan
script has a number of lines where files are written to hardcoded paths. For example (there are several, similar cases):The presence of the folder
/home/${user}/acetoscan/
should be avoided, and the output files written to a(nother) folder, which can be created at run time.Also related: issue #98
The text was updated successfully, but these errors were encountered: