cli.t: test with the right Perl executable (#62)

cli.t: test with the right Perl executable
This commit is contained in:
Adam Spiers 2019-07-28 13:03:54 +01:00 committed by GitHub
commit 9d546b1843
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
THANKS
View file

@ -36,6 +36,7 @@ Jean Louis
Daniel Shahaf Daniel Shahaf
Matan Nassau Matan Nassau
Brice Waegeneire Brice Waegeneire
Slaven Rezic
Email addresses of new contributors are no longer being added by default Email addresses of new contributors are no longer being added by default
for privacy reasons; however please contact the maintainer if you are for privacy reasons; however please contact the maintainer if you are

View file

@ -57,7 +57,7 @@ use testutil;
# #
# or from the top of the source tree during development. This can be done # or from the top of the source tree during development. This can be done
# via the following, which also follows the KISS principle: # via the following, which also follows the KISS principle:
my $STOW = 'bin/stow'; my $STOW = "$^X bin/stow";
`$STOW --help`; `$STOW --help`;
is($?, 0, "--help should return 0 exit code"); is($?, 0, "--help should return 0 exit code");