diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-05-17 00:05:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-17 00:05:04 -0400 |
commit | cb4e3e298e94719d28a830c5dc676dc614c07289 (patch) | |
tree | f45f0cea21a5a5c2eba0183350f0205a3200e2b5 /python/servo | |
parent | 5d479109ef3bdbf0d937f6ea318e9cce8bbde2b3 (diff) | |
parent | 1990a22a1b9dd6641b9cc34bb76d8749c1096cd6 (diff) | |
download | servo-cb4e3e298e94719d28a830c5dc676dc614c07289.tar.gz servo-cb4e3e298e94719d28a830c5dc676dc614c07289.zip |
Auto merge of #23362 - jdm:tc-magicleap, r=SimonSapin
Move magicleap builds to taskcluster
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23362)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index d6170abfb1e..05d832e3403 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -518,6 +518,8 @@ class MachCommands(CommandBase): ml_sdk = env.get("MAGICLEAP_SDK") if not ml_sdk: raise Exception("Magic Leap builds need the MAGICLEAP_SDK environment variable") + if not os.path.exists(ml_sdk): + raise Exception("Path specified by MAGICLEAP_SDK does not exist.") ml_support = path.join(self.get_top_dir(), "support", "magicleap") |