Switch scripts to use bash

This commit switches the command-line scripts to use bash instead of sh
so that we can take advantage of features that bash provides like
arrays.

Relates #18251
This commit is contained in:
Jason Tedor 2016-05-10 15:06:51 -04:00
parent e8ddf5de2f
commit ef6a7631cf
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# CONTROLLING STARTUP: # CONTROLLING STARTUP:
# #

View File

@ -1,5 +1,4 @@
#!/bin/sh #!/bin/bash
CDPATH="" CDPATH=""
SCRIPT="$0" SCRIPT="$0"