diff options
| author | practicalswift <[email protected]> | 2017-10-04 21:32:21 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-10-18 17:10:23 +0200 |
| commit | 193c2fb4c88fbc4e0b19033ed9c0351ac1f02269 (patch) | |
| tree | 300e89377de94192bc3af3107cf01bf39deaa464 | |
| parent | Fix incorrect quoting of quotes (the previous quotes had no effect beyond unq... (diff) | |
| download | discoin-193c2fb4c88fbc4e0b19033ed9c0351ac1f02269.tar.xz discoin-193c2fb4c88fbc4e0b19033ed9c0351ac1f02269.zip | |
Use bash instead of POSIX sh. POSIX sh does not support arrays.
| -rwxr-xr-x | contrib/devtools/gen-manpages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/gen-manpages.sh b/contrib/devtools/gen-manpages.sh index 967717e1e..925d6a625 100755 --- a/contrib/devtools/gen-manpages.sh +++ b/contrib/devtools/gen-manpages.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)} SRCDIR=${SRCDIR:-$TOPDIR/src} |