1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Use system rake instead of bundled rake
This package is configured to use apt installed build dependencies, so the
bundler can't find rake because it's installed system-wide.
.
This patch fixes that issue by using the system rake instead of a bundled one.
Author: Max Gilmour <max.gilmour@canonical.com>
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ruby-scientist/+bug/2133826
Last-Update: 2025-12-03
---
--- a/script/test
+++ b/script/test
@@ -4,4 +4,4 @@
set -e
cd $(dirname "$0")/..
- script/bootstrap && bundle exec rake test
+ script/bootstrap && rake test
|