mozilla / memchaser

Firefox extension to chase the memory usage and garbage collector activity
https://wiki.mozilla.org/QA/Automation_Services/Projects/Addons/MemChaser
29 stars 23 forks source link

Exec tasks in build.xml aren't dash compatbile #169

Closed xabolcs closed 11 years ago

xabolcs commented 11 years ago

In Debian GNU/Linux 7.0 (Wheezy) /bin/dash provides /bin/sh which errors out due to source:

[exec] /bin/sh: 1: source: not found
xabolcs commented 11 years ago

There are two ways of fixing this problem:

  1. use /bin/bash instead /bin/sh
  2. use . (dot) instead source

I vote for the second. I'll open a pull request soon with the second approach.

xabolcs commented 11 years ago

Travis CI also errors out from source.

whimboo commented 11 years ago

This has been merged in the appropriate pull. Thanks for the fix!