kopia lustrzana https://github.com/jupyterhub/repo2docker
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
rodzic
6c5c09b62b
commit
01c785f6fc
|
@ -292,7 +292,7 @@ class RBuildPack(PythonBuildPack):
|
||||||
return super().get_build_scripts() + scripts
|
return super().get_build_scripts() + scripts
|
||||||
|
|
||||||
def get_preassemble_script_files(self):
|
def get_preassemble_script_files(self):
|
||||||
files = {}
|
files = super().get_preassemble_script_files()
|
||||||
installR_path = self.binder_path("install.R")
|
installR_path = self.binder_path("install.R")
|
||||||
if os.path.exists(installR_path):
|
if os.path.exists(installR_path):
|
||||||
files[installR_path] = installR_path
|
files[installR_path] = installR_path
|
||||||
|
|
Ładowanie…
Reference in New Issue