From 571f166f11b019855c80df1fc4146acc367599aa Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 13 Sep 2018 14:50:32 -0700 Subject: DATABASE_URL, not DATABASE_URI --- extra/sql_dumps/ident_table_snapshot.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'extra/sql_dumps') diff --git a/extra/sql_dumps/ident_table_snapshot.sh b/extra/sql_dumps/ident_table_snapshot.sh index 1d45a900..66144fd3 100755 --- a/extra/sql_dumps/ident_table_snapshot.sh +++ b/extra/sql_dumps/ident_table_snapshot.sh @@ -1,13 +1,13 @@ #!/bin/bash -DATABASE_URI="${DATABASE_URI:-fatcat}" +DATABASE_URL="${DATABASE_URL:-fatcat}" OUTPUT_DIR="${1:-.}" set -e -u -o pipefail # This script needs to be run from the directory with the 'dump_idents.sql' # script in it. -# The DATABASE_URI env variable is optional, defaults to 'fatcat' (meaning, +# The DATABASE_URL env variable is optional, defaults to 'fatcat' (meaning, # local postgres, database named 'fatcat') # An optional argument is a path to a directory to save output. @@ -15,8 +15,8 @@ set -e -u -o pipefail DATESLUG="`date +%Y-%m-%d.%H%M%S`" echo "Will move output to '${OUTPUT_DIR}'" -echo "Running SQL (from '${DATABASE_URI}')..." -psql $DATABASE_URI < ./dump_idents.sql +echo "Running SQL (from '${DATABASE_URL}')..." +psql $DATABASE_URL < ./dump_idents.sql CHANGELOG_REV="`head -n1 /tmp/fatcat_ident_latest_changelog.tsv`" OUTFILE="${OUTPUT_DIR}/fatcat_idents.$DATESLUG.r$CHANGELOG_REV.tar.gz" -- cgit v1.2.3