Skip to content

Commit

Permalink
Execute validate-list with manual php invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
globalcitizen committed Mar 12, 2018
1 parent cb524b0 commit 33affdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/other-tests.php
Expand Up @@ -150,7 +150,7 @@
# only process files
if(filetype($file) == 'file') {
print ' - ' . basename($file) . '... ';
$cmd = dirname(__FILE__) . '/validate-list.php ' . escapeshellarg($file);
$cmd = "php " . dirname(__FILE__) . '/validate-list.php ' . escapeshellarg($file);
$output=array();
exec($cmd,$output,$exit_code);
if($exit_code !== 0) {
Expand Down

0 comments on commit 33affdc

Please sign in to comment.