Skip to content

Commit

Permalink
fix: Move startup checks after CI
Browse files Browse the repository at this point in the history
  • Loading branch information
seakrueger committed Sep 4, 2024
1 parent 0f782f6 commit e7ad1ee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tagstudio/src/qt/ts_qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,11 +637,12 @@ def create_folders_tags_modal():
)
self.open_library(Path(lib))

self.check_ffmpeg()

if self.args.ci:
# gracefully terminate the app in CI environment
self.thumb_job_queue.put((self.SIGTERM.emit, []))
else:
# Startup Checks
self.check_ffmpeg()

app.exec()

Expand Down

0 comments on commit e7ad1ee

Please sign in to comment.