fix: use bash, not sh, for code_style.sh script (#1022)

The script uses "set -o", which doesn't exist in vanilla sh, causing
failure on systems that bind sh to dash rather than bash. This PR makes
the bash requirement explicit.
This commit is contained in:
Charles Kerr 2019-11-06 13:47:54 -06:00 committed by GitHub
parent b0e33117c5
commit edbdeae623
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -euo pipefail