From 15b683ba1162f213d577a366a285b2eadb37315d Mon Sep 17 00:00:00 2001 From: Yellowcooln <12516003+yellowcooln@users.noreply.github.com> Date: Thu, 23 Apr 2026 22:06:33 -0400 Subject: [PATCH] Remove debug from Buildroot manager --- buildroot-manage.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/buildroot-manage.sh b/buildroot-manage.sh index 243e7ad..7245536 100644 --- a/buildroot-manage.sh +++ b/buildroot-manage.sh @@ -1176,12 +1176,6 @@ show_logs() { tail -f "$LOGFILE" } -run_debug() { - ensure_root - mkdir -p "$LOG_DIR" "$DATA_DIR" - exec "$VENV_PYTHON" -m repeater.main --config "$CONFIG_DIR/config.yaml" -} - delegate_to_stock_manage() { exec bash "$SCRIPT_DIR/manage.sh" "$@" } @@ -1203,7 +1197,6 @@ Commands: status Show Buildroot service status logs Tail the Buildroot log file uninstall Remove the Buildroot installation - debug Run repeater.main in the foreground EOF } @@ -1235,9 +1228,6 @@ case "${1:-}" in uninstall) uninstall_repeater ;; - debug) - run_debug - ;; ""|help|-h|--help) usage ;;