Control: tags -1 + patch

Hi,

I checked this against PulseAudio v17.0. The bash completion is now
shell-completion/bash/pactl, and it still begins with #!/bin/bash.

Meson installs this file with install_data() into the bash-completion
directory, so it is a sourced completion snippet rather than a standalone
executable.

Attached is a small DEP-3 quilt patch removing the shebang and following
blank line. I tested that the patch applies cleanly to the v17.0 file.

Thanks,
Thomas Stephens
Description: Remove shebang from bash completion snippet
 The pactl completion file is installed as data and sourced by bash-completion,
 not executed as a standalone script, so it should not carry a shebang.
Bug-Debian: https://bugs.debian.org/763139
Author: Thomas Stephens <[email protected]>
Forwarded: no
Last-Update: 2026-08-15
---
--- a/shell-completion/bash/pactl
+++ b/shell-completion/bash/pactl
@@ -1,5 +1,3 @@
-#!/bin/bash
-
 __cards () {
     while IFS=$'\t' read idx name _; do
         printf "%s %s\\n" "$idx" "$name"

Reply via email to