Hello, On Thu, 29 Apr 2021 09:18:59 +0200 Tobias Frost <t...@debian.org> wrote:
> Package: devscripts > Version: 2.21.1 > Severity: normal > > bts bugs does (at least here) not work with (an already opened*) firefox, > as the generated temporariy file is already deleted when firefox tries to > open it. > A workaround is to not delete the temporary file by saying UNLINK => 0 in > line 3843 of /usr/bin/bts, but that is not a proper fix… > > (* Not tested if firefox was closed before.) I can reproduce this bug locally. If firefox is closed, then the bug will display fine, as the temporary file will be created before firefox is opened, and deleted when firefox is closed. However, when already running a firefox instance, the temporary file seems to be deleted early. I think this is because calling `firefox` when another instance is running will return immediatly (and open a new tab in the existing instance). The devscript probably deletes the temporary file directly upon program return. Best regards, Romain.