Skip to content

Commit

Permalink
make_bareos_tables.in: unset PAGER before psql call
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Jun 29, 2023
1 parent 6b94fef commit a6793fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/cats/make_bareos_tables.in
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ if [ -n "${sql_definitions}" ]; then
fi

retval=0
PGOPTIONS='--client-min-messages=warning' psql -f "${temp_sql_schema}" -d "${db_name}" || retval=$?
PAGER="" PGOPTIONS='--client-min-messages=warning' psql -f "${temp_sql_schema}" -d "${db_name}" || retval=$?
if [ $retval -eq 0 ]; then
info "Creation ${db_name} tables succeeded."
else
Expand Down

0 comments on commit a6793fc

Please sign in to comment.