diff options
| author | Jeff Frontz <[email protected]> | 2018-05-25 15:29:30 -0400 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-05-29 15:55:24 +0200 |
| commit | f44a0ebfff2e11c922bba577d64f115c566131c4 (patch) | |
| tree | 66e18a28aedf5b7c2c3e8ae02933515d37dc82c1 | |
| parent | Merge #13304: qa: Fix wallet_listreceivedby race (diff) | |
| download | discoin-f44a0ebfff2e11c922bba577d64f115c566131c4.tar.xz discoin-f44a0ebfff2e11c922bba577d64f115c566131c4.zip | |
Ensure gitian-build.sh uses bash
If the user has some other login shell (e.g., ksh), the bashisms in gitian-build.sh don't work so well.
| -rwxr-xr-x | contrib/gitian-build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/gitian-build.sh b/contrib/gitian-build.sh index 94d6a89c7..5a925f228 100755 --- a/contrib/gitian-build.sh +++ b/contrib/gitian-build.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Copyright (c) 2016 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. |