Skip to content

Commit

Permalink
Call parent preassemble scripts methods
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
betatim committed Jul 23, 2019
1 parent 6c5c09b commit 01c785f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo2docker/buildpacks/r.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 01c785f

Please sign in to comment.