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:
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Creates macOS boot disk.
|
# Creates macOS boot disk.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Installs development tooling requirements.
|
# Installs development tooling requirements.
|
||||||
|
|||||||
2
bin/run
2
bin/run
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Executes the command line interface.
|
# Executes the command line interface.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Defines software installer functions.
|
# Defines software installer functions.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Defines command line prompt options.
|
# Defines command line prompt options.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Defines reinstall functions.
|
# Defines reinstall functions.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Defines software restore functions.
|
# Defines software restore functions.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Defines global settings.
|
# Defines global settings.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Defines uninstall functions.
|
# Defines uninstall functions.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Defines general utility functions.
|
# Defines general utility functions.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#! /bin/bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
# Defines verification/validation functions.
|
# Defines verification/validation functions.
|
||||||
|
|||||||
Reference in New Issue
Block a user