Blame SOURCES/0066-cli-Add-a-shebang.patch

a8b6c4
From 445e68861693be83023e93de072cf04caf833e57 Mon Sep 17 00:00:00 2001
a8b6c4
From: Martin Kutlak <mkutlak@redhat.com>
a8b6c4
Date: Wed, 12 Dec 2018 16:07:33 +0100
a8b6c4
Subject: [PATCH] cli: Add a shebang
a8b6c4
a8b6c4
Fixes a ShellCheck warning SC2148.
a8b6c4
a8b6c4
error: Tips depend on target shell and yours is unknown. Add a shebang.
a8b6c4
a8b6c4
Signed-off-by: Martin Kutlak <mkutlak@redhat.com>
a8b6c4
---
a8b6c4
 src/cli/abrt-console-notification.sh | 1 +
a8b6c4
 1 file changed, 1 insertion(+)
a8b6c4
a8b6c4
diff --git a/src/cli/abrt-console-notification.sh b/src/cli/abrt-console-notification.sh
a8b6c4
index f1a79ffb..cd69eb38 100755
a8b6c4
--- a/src/cli/abrt-console-notification.sh
a8b6c4
+++ b/src/cli/abrt-console-notification.sh
a8b6c4
@@ -1,3 +1,4 @@
a8b6c4
+#!/bin/sh
a8b6c4
 # If shell is not connect to a terminal, return immediately, because this script
a8b6c4
 # should print out ABRT's status and it is senseless to continue without
a8b6c4
 # terminal.
a8b6c4
-- 
a8b6c4
2.26.2
a8b6c4