We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28035d6 commit 8af47e9Copy full SHA for 8af47e9
repo2docker/buildpacks/r.py
@@ -79,6 +79,8 @@ def r_version(self):
79
80
if not hasattr(self, "_r_version"):
81
parts = self.runtime.split("-")
82
+ # If runtime.txt is not set, or if it isn't of the form r-<version>-<yyyy>-<mm>-<dd>,
83
+ # we don't use any of it in determining r version and just use the default
84
if len(parts) == 5:
85
r_version = parts[1]
86
# For versions of form x.y, we want to explicitly provide x.y.z - latest patchlevel
0 commit comments