diff options
author | Nathan Wilcox <inoshiro@lindenlab.com> | 2010-01-13 15:47:57 -0800 |
---|---|---|
committer | Nathan Wilcox <inoshiro@lindenlab.com> | 2010-01-13 15:47:57 -0800 |
commit | dd7840aa9e0627430753522c4480212cf032463e (patch) | |
tree | dfdae4343d0b3b03d1a96e1ee54d95e6c5ba1684 | |
parent | 99a2e77d6b90541ea9a7648e32b616d13c1f467f (diff) |
Add an assertion for my sanity.
-rwxr-xr-x | indra/develop.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/develop.py b/indra/develop.py index b8fdd1a815..59722c4bc2 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -630,6 +630,8 @@ class WindowsSetup(PlatformSetup): print >> open(stamp, 'w'), self.build_type def run_build(self, opts, targets): + for t in targets: + assert t.strip(), 'Unexpected empty targets: ' + repr(targets) cwd = getcwd() executable, build_cmd = self.get_build_cmd() |