From: Bastian Dehn Date: Fri, 24 Apr 2026 14:57:18 +0000 (+0200) Subject: rename method create containerfile X-Git-Tag: 1.3.20^2~3 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=7251f9955361b0b87dbd920d5f0b92705122980a;p=feierabend.git rename method create containerfile --- diff --git a/builder/builder b/builder/builder index b5b0604..bc0e629 100755 --- a/builder/builder +++ b/builder/builder @@ -1,6 +1,6 @@ #!/bin/bash -create_containerfile_template() +create_containerfile() { local distro="$1" local distro_postfix="$2" @@ -42,7 +42,7 @@ main() for distro in $distros; do local distro_postfix=${distro/:/-} - create_containerfile_template "$distro" "$distro_postfix" || return $? + create_containerfile "$distro" "$distro_postfix" || return $? build_container_image "$distro_postfix" || return $? run_build_container "$distro_postfix" || return $? done