[1/3] tests: Fix path to bash

Message ID 20241206164217.3840140-1-michael.tremer@ipfire.org
State New
Headers
Series [1/3] tests: Fix path to bash |

Commit Message

Michael Tremer Dec. 6, 2024, 4:42 p.m. UTC
  Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
---
 tests/lib.sh                                    | 2 +-
 tests/src/initscripts/system/functions/test.sh  | 2 +-
 tests/src/initscripts/system/functions/test2.sh | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
  

Patch

diff --git a/tests/lib.sh b/tests/lib.sh
index bb06e11c2..513850d8d 100644
--- a/tests/lib.sh
+++ b/tests/lib.sh
@@ -1,4 +1,4 @@ 
-#!/usr/bin/bash
+#!/bin/bash
 
 # Get the path of this file.
 # This ist rather complex as we do not want the calling script file
diff --git a/tests/src/initscripts/system/functions/test.sh b/tests/src/initscripts/system/functions/test.sh
index dbcbd45ef..7a23b99b9 100755
--- a/tests/src/initscripts/system/functions/test.sh
+++ b/tests/src/initscripts/system/functions/test.sh
@@ -1,4 +1,4 @@ 
-#!/usr/bin/bash
+#!/bin/bash
 
 SCRIPT_PATH="$(dirname "$(readlink -f "$0")")"
 
diff --git a/tests/src/initscripts/system/functions/test2.sh b/tests/src/initscripts/system/functions/test2.sh
index a568ed2a4..9aa5b8bda 100755
--- a/tests/src/initscripts/system/functions/test2.sh
+++ b/tests/src/initscripts/system/functions/test2.sh
@@ -1,4 +1,4 @@ 
-#!/usr/bin/bash
+#!/bin/bash
 
 SCRIPT_PATH="$(dirname "$(readlink -f "$0")")"