Преглед на файлове

Merge pull request #2568 from reidb1/patch-1

postgres: Fix incorrect shebang in example initialization script
Tianon Gravi преди 6 месеца
родител
ревизия
293b60c1ba
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      postgres/content.md

+ 1 - 1
postgres/content.md

@@ -132,7 +132,7 @@ If you would like to do additional initialization in an image derived from this
 For example, to add an additional user and database, add the following to `/docker-entrypoint-initdb.d/init-user-db.sh`:
 
 ```bash
-#!/bin/bash
+#!/usr/bin/env bash
 set -e
 
 psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL