Fix merge-pr script so it runs as bash
As opposed to wannabe POSIX with bashisms. Makes it run reliably on most user systems (Mac/Linux)
This commit is contained in:
parent
ce3d5936ec
commit
0ad29ed164
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env sh
|
||||
#!/bin/bash
|
||||
|
||||
set -euf pipefail
|
||||
set -eof pipefail
|
||||
|
||||
BRANCH=$1
|
||||
if [[ $# -eq 0 ]] ; then
|
||||
|
|
Loading…
Reference in New Issue