We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afceb7f commit 34f3ef2Copy full SHA for 34f3ef2
template.Debian/docker-entrypoint.sh renamed to .template.Debian/docker-entrypoint.sh
update.sh
@@ -17,11 +17,10 @@ declare -A debianVariants=(
17
# Copy entrypoint template
18
templateVersions=( "5.7 8.0" )
19
for version in ${templateVersions}; do
20
- cp "template.Debian/docker-entrypoint.sh" "${version}/"
+ cp ".template.Debian/docker-entrypoint.sh" "${version}/"
21
done
22
23
for version in "${versions[@]}"; do
24
- if [ "${version}" = "template.Debian" ]; then continue; fi # If update.sh is run without arguments, the template directory is included in the list
25
debianVariant="${debianVariants[$version]:-$defaultDebianVariant}"
26
debianSuite="${debianVariant%%-*}" # "stretch", etc
27
0 commit comments