Skip to content

Commit 79c8b1e

Browse files
authored
Merge pull request #200 from apeschel/feature/apeschel/nullglob
Handle Empty initdb.d directory
2 parents 77f0a50 + dbb83a9 commit 79c8b1e

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

5.5/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22
set -eo pipefail
3+
shopt -s nullglob
34

45
# if command starts with an option, prepend mysqld
56
if [ "${1:0:1}" = '-' ]; then

5.6/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22
set -eo pipefail
3+
shopt -s nullglob
34

45
# if command starts with an option, prepend mysqld
56
if [ "${1:0:1}" = '-' ]; then

5.7/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22
set -eo pipefail
3+
shopt -s nullglob
34

45
# if command starts with an option, prepend mysqld
56
if [ "${1:0:1}" = '-' ]; then

0 commit comments

Comments
 (0)