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.
pull/752/head
Tim Head 2019-07-23 07:33:06 +02:00
rodzic 6c5c09b62b
commit 01c785f6fc
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -292,7 +292,7 @@ class RBuildPack(PythonBuildPack):
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