Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm
Precedence: bulk
X-No-Archive: yes
List-Id: Zsh Workers List <zsh-workers.zsh.org>
List-Post: <mailto:zsh-workers@zsh.org>
List-Help: <mailto:zsh-workers-help@zsh.org>
X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au
X-Spam-Level: 
X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham
	autolearn_force=no version=3.4.0
From: Kamil Dudka <kdudka@redhat.com>
To: zsh-workers@zsh.org
Subject: [PATCH] run-help-ip: use the same shebang as in other functions
Date: Wed, 27 Jan 2016 10:35:08 +0100
Message-Id: <1453887308-9861-1-git-send-email-kdudka@redhat.com>
X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24
X-Seq: zsh-workers 37814

... to prevent rpmlint from reporting the following errors:

zsh.i686: E: wrong-script-interpreter /usr/share/zsh/5.2/functions/run-help-ip zsh
zsh.x86_64: E: wrong-script-interpreter /usr/share/zsh/5.2/functions/run-help-ip zsh
zsh.armv7hl: E: wrong-script-interpreter /usr/share/zsh/5.2/functions/run-help-ip zsh
---
 Functions/Misc/run-help-ip | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Functions/Misc/run-help-ip b/Functions/Misc/run-help-ip
index 3f15b01..740af52 100644
--- a/Functions/Misc/run-help-ip
+++ b/Functions/Misc/run-help-ip
@@ -1,4 +1,4 @@
-#! zsh -f
+#!/bin/zsh -f
 #
 # Install this function by placing it in your FPATH and then
 # adding to your .zshrc the line if you use run-help function:
-- 
2.5.0

