mwaylabs / Espresso

The-M-Projects build tools using node.js.
www.the-m-project.org
Other
84 stars 28 forks source link

ESPRESSO-DEBUG has no effect #84

Closed siamak-haschemi closed 12 years ago

siamak-haschemi commented 12 years ago

Espresso/package/PhoneGap/Android/build does not allow ispecting the native package

...
if echo "${ESPRESSO_DEBUG-}" | grep -q package; then
...

should be

...
if echo "${ESPRESSO_DEBUG-}" | grep -q ${package}; then
...
4z3 commented 12 years ago

Please note this debugging facility is an undocumented feature and subject to change.

Exporting ESPRESSO_DEBUG=package currently causes Espresso to preserve intermediate files while generating the package.

siamak-haschemi commented 12 years ago

OK, i got it wrong. Thank you for the clarification.