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