From 2c3f1110cabdb25a6cf961ebe07cfb4ec099b452 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Fri, 9 Sep 2022 17:10:08 -0400 Subject: [PATCH] Bug 580365: Explicitly use bash for standalone debugger shell scripts (#69) 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 #