From 01c785f6fcabaedfdf164210c78b39399b4aa898 Mon Sep 17 00:00:00 2001 From: Tim Head Date: Tue, 23 Jul 2019 07:33:06 +0200 Subject: [PATCH] Call parent preassemble scripts methods Without this we don't collect the files that other build packs need to copy them over to the container in the pre-assemble stage. --- repo2docker/buildpacks/r.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo2docker/buildpacks/r.py b/repo2docker/buildpacks/r.py index 12207112e..1d7a02297 100644 --- a/repo2docker/buildpacks/r.py +++ b/repo2docker/buildpacks/r.py @@ -292,7 +292,7 @@ def get_build_scripts(self): return super().get_build_scripts() + scripts def get_preassemble_script_files(self): - files = {} + files = super().get_preassemble_script_files() installR_path = self.binder_path("install.R") if os.path.exists(installR_path): files[installR_path] = installR_path