mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-24 12:07:10 -04:00
Merge pull request #76 from ful1e5/dev
Fix `None` value warning in `builder/symlinks.py`
This commit is contained in:
commit
be6151eae7
2 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Some cursors are very blurry on lower sizes fixed #74
|
||||
- `make install` command fixed
|
||||
- prettier bitmapping logs
|
||||
- Fix `None` value warning in `builder/symlinks.py`
|
||||
|
||||
## [v1.2.3] - 23 Nov 2021
|
||||
|
||||
|
|
|
@ -163,6 +163,6 @@ def add_missing_xcursor(directory: Union[str, Path]) -> None:
|
|||
with chdir(directory):
|
||||
for item in symlinks:
|
||||
src: str = str(item["src"])
|
||||
for link in item.get("links"):
|
||||
for link in item["links"]:
|
||||
print(f"Creating symlink {src} -> {link}")
|
||||
os.symlink(src, link)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue