From 5ad4ba42a719f7be77f77bbfcd4c1f440e1b3def Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Tue, 19 Jul 2022 15:32:32 -0400 Subject: [PATCH] Bug 580365: Explicitly use bash for standalone debugger shell scripts The scripts assume that /bin/sh is bash, but it isn't on all installs, in particular Ubuntu: https://wiki.ubuntu.com/DashAsBinSh Change-Id: I8ea05b2ffd1fd41b3aa1e6b395e43fc15a15321f --- debug/org.eclipse.cdt.debug.application/scripts/cdtdebug.sh | 2 +- debug/org.eclipse.cdt.debug.application/scripts/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.application/scripts/cdtdebug.sh b/debug/org.eclipse.cdt.debug.application/scripts/cdtdebug.sh index f6124603d68..c806072ffb2 100755 --- a/debug/org.eclipse.cdt.debug.application/scripts/cdtdebug.sh +++ b/debug/org.eclipse.cdt.debug.application/scripts/cdtdebug.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ############################################################################### # Copyright (c) 2014, 2015 Red Hat, Inc. and others # diff --git a/debug/org.eclipse.cdt.debug.application/scripts/install.sh b/debug/org.eclipse.cdt.debug.application/scripts/install.sh index 33a90ae5b16..15de5af0769 100755 --- a/debug/org.eclipse.cdt.debug.application/scripts/install.sh +++ b/debug/org.eclipse.cdt.debug.application/scripts/install.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ############################################################################### # Copyright (c) 2014 Red Hat, Inc. and others #