diff options
author | John Helmert III <ajak@gentoo.org> | 2022-03-09 13:48:11 -0600 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2022-03-09 14:57:34 -0500 |
commit | 781aefd8be33c3bd699e5a665225013c5f76b531 (patch) | |
tree | 1c64cc7a00fff1e6e3fda0284395282b29c27c5e /bin/archive-conf | |
parent | emerge --keep-going: deduplicate atoms in 'dropped' message (diff) | |
download | portage-781aefd8be33c3bd699e5a665225013c5f76b531.tar.gz portage-781aefd8be33c3bd699e5a665225013c5f76b531.tar.bz2 portage-781aefd8be33c3bd699e5a665225013c5f76b531.zip |
Drop -b from shebangs
The switch to using '/usr/bin/env python' shebangs doesn't naively
work with arguments after 'python', so the shebangs were broken. '-b'
is of dubious necessity anyway, so let's just drop it.
Fixes: 41f4f6d25019c4f944b8d9576d96482f92231fda
Signed-off-by: John Helmert III <ajak@gentoo.org>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'bin/archive-conf')
-rwxr-xr-x | bin/archive-conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/archive-conf b/bin/archive-conf index beb4fcd23..3f7d186fe 100755 --- a/bin/archive-conf +++ b/bin/archive-conf @@ -1,4 +1,4 @@ -#!/usr/bin/env python -b +#!/usr/bin/env python # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 |