use /usr/bin/env to find bash

This commit is contained in:
William G Hatch 2018-08-24 13:38:05 -06:00
parent a5d1686901
commit e77e2a07fb
5 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
source ./scripts/common

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Accepts no arguments
# Returns git-add'ed files as a list of filenames separated by a newline character

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
source ./scripts/common

View file

@ -1,4 +1,4 @@
#!/bin/bash -e
#!/usr/bin/env bash -e
# This script must be run from the root Tridactyl directory
TRIDIR="$(pwd)"