mirror of
https://github.com/php/php-src.git
synced 2026-03-27 09:42:22 +01:00
7 lines
182 B
Bash
Executable File
7 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
|