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 5f77fe2
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,12 +637,13 @@ 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, []))

# Startup Checks
self.check_ffmpeg()

app.exec()

self.shutdown()
Expand Down

0 comments on commit 5f77fe2

Please sign in to comment.