Use more portable shebangs for bash scripts

This commit is contained in:
Tyler Tidman 2016-03-09 11:03:31 -05:00
parent ec82388e32
commit 0bb913c661
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
# Read the address to join from the file we provisioned # Read the address to join from the file we provisioned

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
# Read from the file we created # Read from the file we created

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
echo "Starting Consul..." echo "Starting Consul..."