Skip Menu |

This queue is for tickets about the Git-Crypt CPAN distribution.

Report information
The Basics
Id: 102052
Status: open
Priority: 0/
Queue: Git-Crypt

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.02
Fixed in: (no value)



Subject: System perl used in tests
See http://www.cpantesters.org/cpan/report/61107302-b12c-11e4-8a68-43a58971dd2f for a sample fail report and http://matrix.cpantesters.org/?dist=Git-Crypt for a pass/fail test overview. It seems that not the perl used for the build is used for the tests. Usually there are two possibilities to fix the problem: * Explicitely call the script with $^X * Instead of calling bin/gitcrypt call blib/scripts/gitcrypt --- after all, the blib version of the script will be installed later and already has the correct shebang. But in this case you have to adjust $ENV{PATH} for Windows systems, that is, prepend the directory where the perl executable ($^X) resides.
On Tue Feb 10 14:10:59 2015, SREZIC wrote: Show quoted text
> See http://www.cpantesters.org/cpan/report/61107302-b12c-11e4-8a68- > 43a58971dd2f for a sample fail report and > http://matrix.cpantesters.org/?dist=Git-Crypt for a pass/fail test > overview. It seems that not the perl used for the build is used for > the tests. Usually there are two possibilities to fix the problem: > * Explicitely call the script with $^X > * Instead of calling bin/gitcrypt call blib/scripts/gitcrypt --- after > all, the blib version of the script will be installed later and > already has the correct shebang. But in this case you have to adjust > $ENV{PATH} for Windows systems, that is, prepend the directory where > the perl executable ($^X) resides.
Thanks, i added $^X and uploaded a new version. Lets see if it works this time. Much thanks!!