Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 10.1-2.4-2.5/initdb-pgrouting.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/sh
set -e

# Perform all actions as user 'postgres'
export PGUSER=postgres
# Perform all actions as $POSTGRES_USER
export PGUSER="$POSTGRES_USER"

# Add pgRouting Functions to the database
psql --dbname="$POSTGRES_DB" <<EOSQL
Expand Down
4 changes: 2 additions & 2 deletions 9.4-2.1-2.0/initdb-pgrouting.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/sh
set -e

# Perform all actions as user 'postgres'
export PGUSER=postgres
# Perform all actions as $POSTGRES_USER
export PGUSER="$POSTGRES_USER"

# Add pgRouting Functions to the database
psql --dbname="$POSTGRES_DB" <<EOSQL
Expand Down
4 changes: 2 additions & 2 deletions 9.6-2.3-2.3/initdb-pgrouting.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/sh
set -e

# Perform all actions as user 'postgres'
export PGUSER=postgres
# Perform all actions as $POSTGRES_USER
export PGUSER="$POSTGRES_USER"

# Add pgRouting Functions to the database
psql --dbname="$POSTGRES_DB" <<EOSQL
Expand Down