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.
2 parents d36c2fa + a86f368 commit cebc284Copy full SHA for cebc284
opt/system-setup.py
@@ -70,7 +70,10 @@ def macos(self):
70
71
def common_last(self):
72
self.run("%s/bin/getclang --format" % READIES)
73
- self.run("%s/bin/getcmake" % READIES)
+ if self.platform == "arm":
74
+ self.run("%s/bin/getcmake" % READIES)
75
+ else:
76
+ self.run("%s/bin/getcmake --no-repo" % READIES)
77
78
self.run("{PYTHON} {READIES}/bin/getrmpytools".format(PYTHON=self.python, READIES=READIES))
79
0 commit comments