Be consistent in choice of shell across all shell scripts in repo

This commit is contained in:
practicalswift 2018-04-03 23:00:58 +02:00 committed by Christian Decker
parent bc4a099bff
commit 1a55147870
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#! /bin/sh #!/bin/bash
if [ $# -eq 0 ]; then if [ $# -eq 0 ]; then
# With no args, read stdin to scrape compiler output. # With no args, read stdin to scrape compiler output.

View File

@ -1,4 +1,4 @@
#! /bin/sh #!/bin/bash
from=${1} from=${1}
to=${2} to=${2}

View File

@ -1,4 +1,4 @@
#! /bin/sh #!/bin/bash
# Script to rewrite the autogenerated mocks in a unit test between # Script to rewrite the autogenerated mocks in a unit test between
# /* AUTOGENERATED MOCKS START */ and /* AUTOGENERATED MOCKS END */ # /* AUTOGENERATED MOCKS START */ and /* AUTOGENERATED MOCKS END */
# based on link failures. # based on link failures.