kopia lustrzana https://github.com/jupyterhub/repo2docker
Fix parentheses in the build scripts for R buildpack
rodzic
f90758057a
commit
c688b70696
|
@ -204,15 +204,17 @@ class RBuildPack(PythonBuildPack):
|
||||||
""".format(
|
""".format(
|
||||||
devtools_version=devtools_version,
|
devtools_version=devtools_version,
|
||||||
irkernel_version=irkernel_version
|
irkernel_version=irkernel_version
|
||||||
|
)
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
"${NB_USER}",
|
"${NB_USER}",
|
||||||
# Install shiny library
|
# Install shiny library
|
||||||
r"""
|
r"""
|
||||||
R --quiet -e "install.packages('shiny', repos='https://mran.microsoft.com/snapshot/{}', method='libcurl')"
|
R --quiet -e "install.packages('shiny', repos='https://mran.microsoft.com/snapshot/{}', method='libcurl')"
|
||||||
""".format(self.checkpoint_date.isoformat())
|
""".format(
|
||||||
|
self.checkpoint_date.isoformat()
|
||||||
)
|
)
|
||||||
)
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
def get_assemble_scripts(self):
|
def get_assemble_scripts(self):
|
||||||
|
|
Ładowanie…
Reference in New Issue