diff options
author | Zach Brown <[email protected]> | 2018-10-24 12:35:42 -0400 |
---|---|---|
committer | Zach Brown <[email protected]> | 2018-10-24 12:35:42 -0400 |
commit | 4bc185d0d7ad700e7ecc0248fc6f5ea3083d3ca2 (patch) | |
tree | 34dcc0e2a7c82e10a9046c26364bfb1f3fb25afa /scripts | |
parent | a6fb2b44fa5aaabb4a899a0a6bb337a7189de894 (diff) | |
download | Paper-4bc185d0d7ad700e7ecc0248fc6f5ea3083d3ca2.tar.gz Paper-4bc185d0d7ad700e7ecc0248fc6f5ea3083d3ca2.zip |
Try and make zsh complain less
My turn to make "this cant possibly break" changes to the scripts.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/apatch.sh | 2 | ||||
-rwxr-xr-x | scripts/checkoutpr.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/apatch.sh b/scripts/apatch.sh index 54355c61f2..38a2046912 100755 --- a/scripts/apatch.sh +++ b/scripts/apatch.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash gitcmd="git -c commit.gpgsign=false" diff --git a/scripts/checkoutpr.sh b/scripts/checkoutpr.sh index f11b89a31d..3d07227ff6 100755 --- a/scripts/checkoutpr.sh +++ b/scripts/checkoutpr.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash if [ -z "$1" ]; then echo "$0 <prID>" exit 1; |