Merge pull request #12 from ful1e5/dev
Fix None value warning in builder/symlinks.py
This commit is contained in:
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [unreleased]
|
||||
|
||||
### Added
|
||||
|
||||
- Add cursor top_left_arrow #10 #11
|
||||
|
||||
### Changed
|
||||
|
||||
- Fix `None` value warning in `builder/symlinks.py`
|
||||
|
||||
## [v1.0.3] - 13 Nov 2021
|
||||
|
||||
### Added
|
||||
|
||||
@@ -187,6 +187,6 @@ def add_missing_xcursor(directory) -> None:
|
||||
with chdir(directory):
|
||||
for item in symlinks:
|
||||
src = str(item["src"])
|
||||
for link in item.get("links"):
|
||||
for link in item["links"]:
|
||||
print(f"Creating symlink {src} -> {link}")
|
||||
os.symlink(src, link)
|
||||
|
||||
Reference in New Issue
Block a user