From ba4651b9701db8e6771591836c6b3fda5eae64b6 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 03:00:34 +0000 Subject: [PATCH] Fix syntax error in app.json The app.json file was failing to parse because the 'env' object was not properly closed and had a trailing comma after the 'SUDO_USERS' entry. This commit adds the missing closing brace and removes the trailing comma, making it a valid JSON entity. Co-authored-by: TeamAloneOp <131831332+TeamAloneOp@users.noreply.github.com> --- app.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.json b/app.json index b3760aa..915e28d 100644 --- a/app.json +++ b/app.json @@ -66,7 +66,8 @@ "description": "Sudo users ID separated by space", "required": false, "value": "SUDO USER ID" - }, + } + }, "buildpacks": [ { "url": "heroku-community/apt"