Skip to content

Commit 8d8db06

Browse files
committed
updates & fixes
1 parent eaeda1b commit 8d8db06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commands/dusk-versions-check.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
$system_chrome = $argv[1];
88
$system_chromedriver = $argv[2];
99
$laravel_chromedriver = $argv[3];
10-
$print_info_only = $argv[4];
10+
$print_info = $argv[4];
1111

1212
$compatible = FALSE;
1313
if ($system_chromedriver == $laravel_chromedriver) {
@@ -20,7 +20,7 @@
2020
}
2121
}
2222
}
23-
if ($print_info_only) {
23+
if ($print_info) {
2424
if ($compatible) {
2525
print $green."Laravel Chromedriver check => PASSED OK.".PHP_EOL;
2626
print $yellow."You can use both Chromedriver shipped with Laravel (".$laravel_chromedriver.") or system Chromeriver (".$system_chromedriver.")".PHP_EOL;

0 commit comments

Comments
 (0)