From 1b071f4f672f72d171bd5930fa3aeb6f360b26e0 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Thu, 18 Jun 2026 04:44:36 +0000 Subject: [PATCH] fix: repair broken define in webhook.php (missing closing quote from prior sed) --- public_html/webhook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/webhook.php b/public_html/webhook.php index 0905870..4d9fa73 100644 --- a/public_html/webhook.php +++ b/public_html/webhook.php @@ -14,7 +14,7 @@ if (!defined('WEBHOOK_SECRET')) { exit; } define('DEPLOY_QUEUE', '/tmp/jarvis-deploy-queue.txt'); -define('DEPLOY_LOG, '/var/www/jarvis/logs/deploy.log'); +define('DEPLOY_LOG', '/var/www/jarvis/logs/deploy.log'); header('Content-Type: application/json');