Actions
Bug #26367
closedBuilding a tarball with Rakefile.dist fails over $CHILD_STATUS
Status:
Closed
Priority:
Normal
Assignee:
Category:
Development tools
Target version:
Description
When invoking rake -f Rakefile.dist pkg:generate_source
it fails because the English module is not required. Using $?
does work.
Added by Ewoud Kohl van Wijngaarden about 6 years ago
Actions
Fixes #26367 - Fix building sources outside of bundler
Using `rake -f Rakefile.dist pkg:generate_source` fails because it
doesn't require the English module. This means $CHILD_STATUS is not set
and the task fails. When using it via Rakefile it loads the main
application which pulls in the English module somewhere so there the
issue doesn't exist.
By requiring English we ensure the readable version is present.