You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
From ff3d291a68b912194a7f72a084359ab13853b753 Mon Sep 17 00:00:00 2001 |
|
From: Hannes Reinecke <hare@suse.de> |
|
Date: Fri, 29 Nov 2013 13:13:54 +0100 |
|
Subject: [PATCH] Remove shebang from shell-completion files |
|
|
|
Shell-completion files are meant to be sourced, not executed. |
|
So they shouldn't have a shebang at the start. |
|
|
|
Signed-off-by: Hannes Reinecke <hare@suse.de> |
|
--- |
|
dracut-bash-completion.sh | 2 +- |
|
lsinitrd-bash-completion.sh | 2 +- |
|
2 files changed, 2 insertions(+), 2 deletions(-) |
|
|
|
diff --git a/dracut-bash-completion.sh b/dracut-bash-completion.sh |
|
index d796c358..9f359c6e 100644 |
|
--- a/dracut-bash-completion.sh |
|
+++ b/dracut-bash-completion.sh |
|
@@ -1,4 +1,4 @@ |
|
-#!/bin/bash |
|
+# |
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- |
|
# ex: ts=8 sw=4 sts=4 et filetype=sh |
|
# |
|
diff --git a/lsinitrd-bash-completion.sh b/lsinitrd-bash-completion.sh |
|
index 78ab1654..3df2965f 100644 |
|
--- a/lsinitrd-bash-completion.sh |
|
+++ b/lsinitrd-bash-completion.sh |
|
@@ -1,4 +1,4 @@ |
|
-#!/bin/bash |
|
+# |
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- |
|
# ex: ts=8 sw=4 sts=4 et filetype=sh |
|
#
|
|
|