Skip to content

Commit 121af28

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/v3-architecture
2 parents ec3358f + 1ce2903 commit 121af28

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
environment:
3939
name: pypi
40-
url: https://pypi.org/p/viur-core
40+
url: https://pypi.org/p/viur-cli
4141
permissions:
4242
id-token: write # IMPORTANT: mandatory for trusted publishing
4343

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ In case you have appropriate permissions, a release can be done this way:
8484

8585
## Maintenance
8686

87-
Maintainer of this project is [@grashalmbeisser](https://github.com/Grashalmbeisser).
87+
Maintainer of this project is [@KadirBalku](https://github.com/KadirBalku).

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2025 by Mausbrand Informationssysteme GmbH.
1+
Copyright © 2026 by Mausbrand Informationssysteme GmbH.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ viur-cli depends on
323323

324324
## License
325325

326-
Copyright © 2025 by Mausbrand Informationssysteme GmbH.<br>
326+
Copyright © 2026 by Mausbrand Informationssysteme GmbH.<br>
327327
Mausbrand and ViUR are registered trademarks of Mausbrand Informationssysteme GmbH.
328328

329329
This project is free software under the MIT license.<br>

src/viur_cli/scriptor/cli.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,9 +381,10 @@ def watch_loop():
381381

382382
def on_modified(event):
383383
try:
384-
# check for tmp file
385384
if event.src_path.endswith("~"):
386385
return
386+
if not os.path.exists(event.src_path):
387+
return
387388
if event.src_path not in modified_files:
388389
modified_files[event.src_path] = os.path.getmtime(event.src_path)
389390
elif os.path.getmtime(event.src_path) == modified_files[event.src_path]:
@@ -395,7 +396,7 @@ def on_modified(event):
395396
print(f"Error: on file {event.src_path} {e}")
396397
traceback.print_exc()
397398

398-
regexes = [r".*\.py"]
399+
regexes = [r".*\.py$"]
399400
ignore_regexes = []
400401
ignore_directories = True
401402
case_sensitive = False

0 commit comments

Comments
 (0)