fix?(package): postgreact

This commit is contained in:
zerosummed
2025-04-17 05:20:41 +03:00
parent 29ff6989e5
commit fb8fa34ff2
10 changed files with 76 additions and 47 deletions

View File

@@ -7,6 +7,8 @@
# --color Pass -fdiagnostics-color=always to compiler.
# help, --help Show this help message.
set -u
check_dependencies() {
for dep in gcc pg_config; do
if ! command -v "$dep" >/dev/null 2>&1; then
@@ -91,7 +93,7 @@ case "$MODE" in
# Copy extension files to target directory
cp postgreact.control target/
cp postgreact--0.1.sql target/
cp postgreact--${EXTENSION_VERSION}.sql target/
echo "Build complete. Files available in target/ directory."
;;
@@ -99,4 +101,4 @@ case "$MODE" in
print_help
exit 1
;;
esac
esac