mirror of
https://github.com/postgres/postgres.git
synced 2025-06-03 00:02:26 -04:00
15 lines
288 B
Bash
Executable File
15 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P)"
|
|
INSTALL_DIR="$SCRIPT_DIR/../../pginst"
|
|
source $SCRIPT_DIR/env.sh
|
|
|
|
if [ "$TDE_ONLY" -eq 1 ];
|
|
then
|
|
cd "$SCRIPT_DIR/../contrib/pg_tde"
|
|
make -s check
|
|
else
|
|
cd "$SCRIPT_DIR/.."
|
|
make -s check-world
|
|
fi
|