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

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