We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b54c75a commit b7b5363Copy full SHA for b7b5363
alibuild_helpers/utilities.py
@@ -142,13 +142,12 @@ def __call__(self):
142
m = re.search(r'^dist:(.*)@([^@]+)$', self.url)
143
fn,gh = m.groups()
144
err,d = getstatusoutput(format("GIT_DIR=%(dist)s/.git git show %(gh)s:%(fn)s.sh",
145
- dist=distdir, gh=gh, fn=fn.lower()))
+ dist=self.configDir, gh=gh, fn=fn.lower()))
146
if err:
147
raise RuntimeError(format("Cannot read recipe %(fn)s from reference %(gh)s.\n" +
148
"Make sure you run first (this will not alter your recipes):\n" +
149
" cd %(dist)s && git remote update -p && git fetch --tags",
150
dist=self.configDir, gh=gh, fn=fn))
151
- warning("Overriding %s from reference %s" % (fn,gh))
152
return d
153
154
def parseRecipe(reader):
0 commit comments