From 77a9842db79fe18257fe2429a199e52cce5fe074 Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Sun, 11 Oct 2020 12:20:41 +0200 Subject: [PATCH] Copy over hidden files in install_resource_dir Previously, when using the 'install_resource_dir' function hidden files were not copied over. This resulted in problems when rebuilding specific docker images. This commit fixes the issue. --- distillery/lib/40_templates.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/distillery/lib/40_templates.sh b/distillery/lib/40_templates.sh index 8ddb5df..3eb39a2 100644 --- a/distillery/lib/40_templates.sh +++ b/distillery/lib/40_templates.sh @@ -1,5 +1,6 @@ #!/bin/bash set -e +shopt -s dotglob # This is a library file. # It should be 'source'd only, if it is not we bail out here.