8000 add support for axis illustration files in push.py by zhaoxiong0211 · Pull Request #532 · googlefonts/gftools · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

add support for axis illustration files in push.py #532

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/gftools/push.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def push_report(fp):

def missing_paths(fp):
paths = [fp.parent / p.path for p in parse_server_file(fp)]
axis_files = [p for p in paths if p.name.endswith("textproto")]
axis_files = [p for p in paths if p.name.endswith(("textproto", "svg"))]
dirs = [p for p in paths if p not in axis_files]

missing_dirs = [p for p in dirs if not p.is_dir()]
Expand Down
0