diff options
author | bors-servo <metajack+bors@gmail.com> | 2014-12-02 19:27:51 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2014-12-02 19:27:51 -0700 |
commit | 873ca6cadddc1a40bead1f5dd0128bb16cfaa11b (patch) | |
tree | e9a1c8b6dc056448fea6d52229e54817b97d14d2 /python/servo/command_base.py | |
parent | b2b6d4d0d1e381d038dc5e45cbe74304704934e7 (diff) | |
parent | e1c2210c23e2e5f7a24901618698c090279092ee (diff) | |
download | servo-873ca6cadddc1a40bead1f5dd0128bb16cfaa11b.tar.gz servo-873ca6cadddc1a40bead1f5dd0128bb16cfaa11b.zip |
auto merge of #4140 : SimonSapin/servo/no-root-cargo-toml, r=SimonSapin
This fixes #3957, and allow #4115 not to regress #4099.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 8dc872e8656..a34104b734e 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -142,6 +142,9 @@ class CommandBase(object): return env + def servo_crate(self): + return path.join(self.context.topdir, "components", "servo") + def ensure_bootstrapped(self): if self.context.bootstrapped: return |