Use consistent shebangs in scripts

This commit is contained in:
Joshua Boniface 2023-10-17 10:35:38 -04:00
parent b997c6f31e
commit 751cfe0b29
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# A useful script for testing out changes to PVC by building the debs and deploying them out to a # A useful script for testing out changes to PVC by building the debs and deploying them out to a
# set of hosts automatically, including restarting the daemon (with a pause between) on the remote # set of hosts automatically, including restarting the daemon (with a pause between) on the remote

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/usr/bin/env bash
pushd $( git rev-parse --show-toplevel ) &>/dev/null pushd $( git rev-parse --show-toplevel ) &>/dev/null
ver="$( head -1 debian/changelog | awk -F'[()-]' '{ print $2 }' )" ver="$( head -1 debian/changelog | awk -F'[()-]' '{ print $2 }' )"
git pull git pull

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/usr/bin/env bash
set -o xtrace set -o xtrace
exec 3>&1 exec 3>&1
exec 1>&2 exec 1>&2

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# Generate the database migration files # Generate the database migration files

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# Generate the Zookeeper migration files # Generate the Zookeeper migration files