From e4cf2eee2d07ebe32f296056d4ba78f25c3e5db4 Mon Sep 17 00:00:00 2001 From: OpenHands Date: Sun, 5 Jan 2025 11:44:23 +0900 Subject: [PATCH] Fix issue #4864: [Bug]: make start-backend results in NotImplementedError: Non-relative patterns are unsupported (#5332) Co-authored-by: Engel Nyst --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e1f14c410f..9cae92e045 100644 --- a/Makefile +++ b/Makefile @@ -190,7 +190,7 @@ build-frontend: # Start backend start-backend: @echo "$(YELLOW)Starting backend...$(RESET)" - @poetry run uvicorn openhands.server.listen:app --host $(BACKEND_HOST) --port $(BACKEND_PORT) --reload --reload-exclude "$(shell pwd)/workspace" + @poetry run uvicorn openhands.server.listen:app --host $(BACKEND_HOST) --port $(BACKEND_PORT) --reload --reload-exclude "./workspace" # Start frontend start-frontend: