From d021a890fcd931d3c05ce83729ef984ef4fa6b79 Mon Sep 17 00:00:00 2001 From: Rodrigo Delduca <46259+skhaz@users.noreply.github.com> Date: Sun, 19 Nov 2023 19:38:28 -0300 Subject: [PATCH] Work in progress --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 9c1aa21..732eb28 100644 --- a/main.go +++ b/main.go @@ -35,7 +35,7 @@ var ( ) func getRuntime(runtime string) (Runtime, error) { - url := fmt.Sprintf("https://github.com/chromaberration/carimbo/releases/download/v%s/WebAssembly.zip", runtime) + url := fmt.Sprintf("https://github.com/flippingpixels/carimbo/releases/download/v%s/WebAssembly.zip", runtime) if cached, ok := cache.runtimes.Load(runtime); ok { return cached.(Runtime), nil