Fixed Bash script header to dynamically load correct environment.

- Improves loading of the correct Bash environment/version, especially
  on systems that might not be using a standard install (i.e.
  Homebrew), by loading a version of Bash as defined by the environment
  rather than a hard coded path.

[ci skip]
This commit is contained in:
Brooke Kuhlmann
2016-10-10 09:37:54 -06:00
parent d03c461739
commit 8fbf63a783
11 changed files with 11 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Creates macOS boot disk.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Installs development tooling requirements.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Executes the command line interface.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Defines software installer functions.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Defines command line prompt options.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Defines reinstall functions.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Defines software restore functions.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Defines global settings.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Defines uninstall functions.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Defines general utility functions.

View File

@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
# DESCRIPTION
# Defines verification/validation functions.