mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Use $INDENT instead of which
to find the indent binary
Per discussion after my commit o yesterday.
This commit is contained in:
@ -21,7 +21,10 @@ fi
|
|||||||
TYPEDEFS="$1"
|
TYPEDEFS="$1"
|
||||||
shift
|
shift
|
||||||
|
|
||||||
INDENT=`which indent`
|
if [ -z "$INDENT" ]
|
||||||
|
then
|
||||||
|
INDENT=indent
|
||||||
|
fi
|
||||||
|
|
||||||
trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15
|
trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15
|
||||||
entab </dev/null >/dev/null
|
entab </dev/null >/dev/null
|
||||||
|
Reference in New Issue
Block a user