Bug #2049
Mis à jour par Matthieu Decorde il y a presque 8 ans
Linux and Mac OS X need the CQP binary files file rights to be executable.
Notes:
* JAR (and ZIP) don't store file rights (TAR and GZ do)
* a chmod commands does not work works because the user owner is not the owner different (same group is not enough). enough?).
h3. Solution 1
gzip The files are gzipped and extract files during extracted when the plugin is doing its post-installation to be do have the right user owner and then to be able to change the execution rights.
Finally h3. Solution 2
Wrap the Gz files in a tar file and use the Java File API to set the rights (instead of using a Runtime command)
h3. Solution 2
Wrap the Gz files in a tar file
Notes:
* JAR (and ZIP) don't store file rights (TAR and GZ do)
* a chmod commands does not work works because the user owner is not the owner different (same group is not enough). enough?).
h3. Solution 1
gzip The files are gzipped and extract files during extracted when the plugin is doing its post-installation to be do have the right user owner and then to be able to change the execution rights.
Finally h3. Solution 2
Wrap the Gz files in a tar file and use the Java File API to set the rights (instead of using a Runtime command)
h3. Solution 2
Wrap the Gz files in a tar file