fix: quote PHP_BINARY for Windows #216

Merged
jmiller merged 1 commits from dev into main 2026-05-30 15:09:25 +00:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ if (empty($stability) || empty($token)) {
}
$cli = __DIR__;
$php = PHP_BINARY;
$php = escapeshellarg(PHP_BINARY);
$giteaUrl = rtrim($giteaUrl, '/');
// Auto-detect org/repo from git remote if not set
+1 -1
View File
@@ -63,7 +63,7 @@ if (array_key_exists($branch, $stabilityMap)) {
}
$cli = __DIR__;
$php = PHP_BINARY;
$php = escapeshellarg(PHP_BINARY);
// Auto-detect watch path from manifest.xml if not provided
if (empty($watchPath)) {