Hardcoded paths are not portable to all linux systems, using env is a good way to handle this.
On line 224 env is used instead of modifying the shebang of the genssl script (because I do not know where it comes from). That is the most likely part to cause issues for other platforms as it is now.
Hardcoded paths are not portable to all linux systems, using
env
is a good way to handle this.On line 224
env
is used instead of modifying the shebang of the genssl script (because I do not know where it comes from). That is the most likely part to cause issues for other platforms as it is now.