Skip to content

Commit 83e413c

Browse files
committed
Fix: Single quoted argument passed to win32 php command fails: Unexpected string constant echo...
1 parent f3461be commit 83e413c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/support/phpEnvironments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const phpEnvironments: Record<PhpEnvironment, PhpEnvironmentConfig> = {
6262
local: {
6363
label: "Local",
6464
description: "Use PHP installed on the local machine.",
65-
check: "php -r 'echo PHP_BINARY;'",
65+
check: 'php -r "echo PHP_BINARY;"',
6666
command: '"{binaryPath}"',
6767
},
6868
};

0 commit comments

Comments
 (0)