Skip to content

Commit 744e94c

Browse files
committed
0.4.19
1 parent 5c01da7 commit 744e94c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.19 - Apr 11, 2025
2+
3+
- macOS: fix build #296 via @SergeevPavel, @Alex2772
4+
15
# 0.4.18 - Jul 9, 2024
26

37
- macOS: Stable screen ids

script/build_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ def copy_newer(src, dst):
6666

6767
def has_newer(sources, targets):
6868
mtime = time.time()
69+
if not any(os.path.exists(f) for f in targets):
70+
return True
6971
for target in targets:
7072
if os.path.exists(target):
7173
mtime = min(mtime, os.path.getmtime(target))

0 commit comments

Comments
 (0)