mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
6 lines
182 B
Bash
Executable file
6 lines
182 B
Bash
Executable file
#!/bin/bash
|
|
echo '
|
|
<?php $conn_str .= " user=postgres"; ?>' >> "./ext/pgsql/tests/config.inc"
|
|
if [ -z "$ARM64" -o -z "$S390X"]; then
|
|
psql -c 'create database test;' -U postgres
|
|
fi
|