1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

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
This commit is contained in:
Jonah Graham 2022-09-09 17:10:08 -04:00 committed by GitHub
parent c84e47a711
commit 2c3f1110ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
############################################################################### ###############################################################################
# Copyright (c) 2014, 2015 Red Hat, Inc. and others # Copyright (c) 2014, 2015 Red Hat, Inc. and others
# #

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
############################################################################### ###############################################################################
# Copyright (c) 2014 Red Hat, Inc. and others # Copyright (c) 2014 Red Hat, Inc. and others
# #