From c3b06ff55de5288a2ac4e351176c00404bc5a0fc Mon Sep 17 00:00:00 2001 From: Petr Rockai Date: Mon, 10 Jun 2013 11:28:47 +0200 Subject: [PATCH] test: Avoid hardcoding path to bash (not all systems have /bin/bash). --- test/lib/aux.sh | 2 +- test/lib/check.sh | 2 +- test/lib/test.sh | 2 +- test/lib/utils.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/lib/aux.sh b/test/lib/aux.sh index b92f428a9..dc8a8232e 100644 --- a/test/lib/aux.sh +++ b/test/lib/aux.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright (C) 2011-2012 Red Hat, Inc. All rights reserved. # # This copyrighted material is made available to anyone wishing to use, diff --git a/test/lib/check.sh b/test/lib/check.sh index 157434bd4..6cb33acba 100644 --- a/test/lib/check.sh +++ b/test/lib/check.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright (C) 2010-2012 Red Hat, Inc. All rights reserved. # # This copyrighted material is made available to anyone wishing to use, diff --git a/test/lib/test.sh b/test/lib/test.sh index 9a56a0f63..7e0df73e7 100644 --- a/test/lib/test.sh +++ b/test/lib/test.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright (C) 2011-2012 Red Hat, Inc. All rights reserved. # # This copyrighted material is made available to anyone wishing to use, diff --git a/test/lib/utils.sh b/test/lib/utils.sh index ab5abc10f..47e89bf62 100644 --- a/test/lib/utils.sh +++ b/test/lib/utils.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright (C) 2011-2012 Red Hat, Inc. All rights reserved. # # This copyrighted material is made available to anyone wishing to use,