summaryrefslogtreecommitdiffstats
path: root/update.sh
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2018-01-30 13:11:04 +0100
committerTilo Spannagel <development@tilosp.de>2018-01-30 13:11:04 +0100
commit3747025dd6cc24b4454feecd897328d9d6a8ce6e (patch)
tree11bcd7baa6430d1a6c0e754dce2e402bd8819895 /update.sh
parent74c68d908bf6ac8c69bbdc1cd091ff03bfa5ffaa (diff)
Add cron.sh
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/update.sh b/update.sh
index 2920d073..2fb6f4c0 100755
--- a/update.sh
+++ b/update.sh
@@ -51,8 +51,10 @@ for latest in "${latests[@]}"; do
s/%%VARIANT_EXTRAS%%/'"${extras[$variant]}"'/g;
' "$version/$variant/Dockerfile"
- # Copy the docker-entrypoint.
- cp docker-entrypoint.sh "$version/$variant/docker-entrypoint.sh"
+ # Copy the shell scripts
+ for name in entrypoint cron; do
+ cp "docker-$name.sh" "$version/$variant/$name.sh"
+ done
# Copy the config directory
cp -rT .config "$version/$variant/config"