From 2552fbfb22feee4eb869efc91c662163ce664d9f Mon Sep 17 00:00:00 2001 From: mingrammer Date: Mon, 10 Feb 2020 22:23:04 +0900 Subject: [PATCH] feat(script:resource): remove bg color suffix --- scripts/resource.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/resource.py b/scripts/resource.py index 5d43495d9..386f27709 100644 --- a/scripts/resource.py +++ b/scripts/resource.py @@ -19,6 +19,7 @@ def cleaner_aws(f): f = f.replace("_", "-") f = f.replace("@4x", "") + f = f.replace("-light-bg", "") for p in cfg.FILE_PREFIXES["aws"]: if f.startswith(p): f = f[len(p):]