Skip to content

Commit 35a9434

Browse files
manverumboersma
authored andcommitted
fix(contrib/util): use /usr/bin/env shebang for bash scripts
1 parent 2d1db8e commit 35a9434

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

contrib/util/_controller-reset-db.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -e
1+
#!/usr/bin/env bash -e
22

33
# This code is kept in a separate file from `reste-db.sh` for no other reason than to not have to deal
44
# with the nightmare of double escaping all these commands through `vagrant ssh -c "\\\\\\\\\AGH!"`

contrib/util/add_server_dev_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
cd /vagrant/contrib/vagrant/util/
33

44
# Use the `coverage' command to signal whether the container has the dev dependencies

contrib/util/check-user-data.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
THIS_DIR=$(cd $(dirname $0); pwd) # absolute path
44
CONTRIB_DIR=$(dirname $THIS_DIR)

contrib/util/generate-changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# vim: et tw=0 sw=4 ts=4
33

44
usage() {

0 commit comments

Comments
 (0)