From cdeba03d5ea807d8cfc30661f7437c5db8770ebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Jakse?= Date: Tue, 15 Aug 2023 19:57:56 +0000 Subject: [PATCH] startplasmamobile: Specify bash in the shebang /bin/sh is not always bash. In distributions like Mobian where /bin/sh does not have bash features, startplasmamobile outputs "[[: command not found" or similar message because of the use of '[[' on the if statement that looks for systemd-coredump. --- bin/startplasmamobile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/startplasmamobile.in b/bin/startplasmamobile.in index 805183b8..9e951065 100755 --- a/bin/startplasmamobile.in +++ b/bin/startplasmamobile.in @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # SPDX-FileCopyrightText: 2019-2021 Aleix Pol # SPDX-FileCopyrightText: 2019-2021 Bhushan Shah