-
Is this a mistake? Shouldn't it be configured like Currently, the setup runs the application only if the setup is run in silent mode with the I don't know whether this is intended behavior, so I'm not making an issue yet. Maybe you have a good reason for it :) I'm asking because of this issue in a package I maintain, for reference: sorashi/chocolatey-packages#2 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think i understand now why is this happening. Taiga is meant to be always-running application, so starting it after installation is good thing, but as i understand installer does not check if taiga is running before installation or is it installed so it starts it in fresh silent installation too. |
Beta Was this translation helpful? Give feedback.
-
Silent mode is used by Taiga's updater here: Lines 263 to 266 in b6f440e The process works as following:
This has been the case since 35342e5, for about ten years now. I didn't think of any other use case for the |
Beta Was this translation helpful? Give feedback.
Silent mode is used by Taiga's updater here:
taiga/src/taiga/update.cpp
Lines 263 to 266 in b6f440e
The process works as following:
/S
and/D
flags.sends awaits 3 seconds for Taiga to close.WM_DESTROY
message to Taiga and(Correction: In silent mode, installer skips sending the mess…