remove shebang from bash completion

shebang presence causes rpmlint error:

"non-executable-script
/usr/share/bash-completion/completions/podman 644 /bin/bash"

completions aren't executable in themselves so there's no need for
a shebang there.

Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>

Closes: #313
Approved by: rhatdan
This commit is contained in:
Lokesh Mandvekar 2018-02-08 00:00:04 -05:00 committed by Atomic Bot
parent e47c2e390a
commit 8fdccb7764
1 changed files with 0 additions and 2 deletions

View File

@ -1,5 +1,3 @@
#! /bin/bash
: ${PROG:=$(basename ${BASH_SOURCE})}
__podman_previous_extglob_setting=$(shopt -p extglob)