Use consistent shebangs in scripts
This commit is contained in:
parent
b997c6f31e
commit
751cfe0b29
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Generate the database migration files
|
# Generate the database migration files
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Generate the Zookeeper migration files
|
# Generate the Zookeeper migration files
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue