From 83526c4aecca7885f406fb0f5b75c99b6e95aebb Mon Sep 17 00:00:00 2001 From: Erik Rose Date: Thu, 29 Jan 2026 15:23:33 -0500 Subject: [PATCH] Don't crash if `make decides to generate the stubs when they're already there. That happened to me. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d4db6d3..3f60a0b 100644 --- a/Makefile +++ b/Makefile @@ -48,6 +48,7 @@ COMPOSED_WASMS := $(foreach example,$(EXAMPLES),$(BUILD_DIR)/$(example).composed all: $(COMPOSED_WASMS) $(STUBS_DIR): $(COMPUTE_WIT) + rm -rf $(STUBS_DIR) uv run componentize-py -d wit --world-module wit_world -w $(TARGET_WORLD) bindings $(STUBS_DIR) # Build our composed wasm using fastly-compute-py build