Skip to content

Commit 9f11182

Browse files
committed
fix: Move startup checks after CI
1 parent 0f782f6 commit 9f11182

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/apprun.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
libxcb-xinerama0 \
3434
libopengl0 \
3535
libxcb-cursor0 \
36-
libpulse0
36+
libpulse0 \
37+
ffmpeg
3738
3839
- name: Install dependencies
3940
run: |

tagstudio/src/qt/ts_qt.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,11 +637,12 @@ def create_folders_tags_modal():
637637
)
638638
self.open_library(Path(lib))
639639

640-
self.check_ffmpeg()
641-
642640
if self.args.ci:
643641
# gracefully terminate the app in CI environment
644642
self.thumb_job_queue.put((self.SIGTERM.emit, []))
643+
else:
644+
# Startup Checks
645+
self.check_ffmpeg()
645646

646647
app.exec()
647648

0 commit comments

Comments
 (0)