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:
Oskar Thoren 2017-12-15 11:01:39 +01:00
parent ce3d5936ec
commit 0ad29ed164
No known key found for this signature in database
GPG Key ID: 5128AB0637CD85AF
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env sh
#!/bin/bash
set -euf pipefail
set -eof pipefail
BRANCH=$1
if [[ $# -eq 0 ]] ; then