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 927fd8a commit db366f9Copy full SHA for db366f9
project.py
@@ -889,6 +889,9 @@ def build(self, stdout=sys.stdout):
889
([scheme_target] if scheme_target else [])
890
)
891
for compatible_swift in self.project['compatibility'].keys()[:1]:
892
+ if len(self.project['compatibility'][compatible_swift]['commit']) != 40:
893
+ common.debug_print("ERROR: Commits must be 40 character SHA hashes")
894
+ exit(1)
895
self.checkout_sha(
896
self.project['compatibility'][compatible_swift]['commit'],
897
stdout=stdout, stderr=stdout
0 commit comments