From 5406111478d44d1bd56bb249ffc4ced805640273 Mon Sep 17 00:00:00 2001 From: Greg Hewgill Date: Sun, 31 Dec 2023 00:22:30 +1300 Subject: [PATCH] Add missing type for helium compatibility --- scripts/module-install.neon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/module-install.neon b/scripts/module-install.neon index 20547d03d..5d6102327 100644 --- a/scripts/module-install.neon +++ b/scripts/module-install.neon @@ -16,7 +16,7 @@ IF file.isDirectory("lib/\(name)") THEN sys.exit(1) END IF -LET mod := yamlLoad("neon-module-registry/\(name).yaml") +LET mod: Object := yamlLoad("neon-module-registry/\(name).yaml") IF os.system("git clone \(mod["repository"]) lib/\(name)") <> 0 THEN print("Error cloning module")