Merge pull request #1024 from ThibaultRiviere/fix/bash_path

FIX: use /usr/bin/env bash in shebang
This commit is contained in:
Qi Zhao
2016-12-21 16:19:25 -08:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script serves as an example to demonstrate how to generate the gRPC-Go
# interface and the related messages from .proto file.

View File

@ -1,4 +1,5 @@
#!/bin/bash
#!/usr/bin/env bash
set -e