Skip to content

Commit 01c785f

Browse files
committed
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.
1 parent 6c5c09b commit 01c785f

File tree

1 file changed

+1
-1
lines changed
  • repo2docker/buildpacks

1 file changed

+1
-1
lines changed

repo2docker/buildpacks/r.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def get_build_scripts(self):
292292
return super().get_build_scripts() + scripts
293293

294294
def get_preassemble_script_files(self):
295-
files = {}
295+
files = super().get_preassemble_script_files()
296296
installR_path = self.binder_path("install.R")
297297
if os.path.exists(installR_path):
298298
files[installR_path] = installR_path

0 commit comments

Comments
 (0)