From f5a29097fcc772540d68024d403b5d2332c56ad3 Mon Sep 17 00:00:00 2001 From: Miguel Angel Quinones Garcia Date: Sun, 6 Dec 2015 21:53:45 +0000 Subject: [PATCH] Add support for injection of plist, JSON, HTML, CSS and js resources --- Scripts/dyci-recompile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/dyci-recompile.py b/Scripts/dyci-recompile.py index 430b04d..190aee9 100755 --- a/Scripts/dyci-recompile.py +++ b/Scripts/dyci-recompile.py @@ -114,7 +114,7 @@ def copyResource(source, dyci): exit(1) # In case of resources.. -if filename.endswith((".png", ".jpg", ".jpeg", ".strings")): +if filename.endswith((".png", ".jpg", ".jpeg", ".strings", ".plist", ".json", ".html", ".css", ".js")): resultCode = copyResource(filename, DYCI_ROOT_DIR) exit(resultCode)