aboutsummaryrefslogtreecommitdiffstats
path: root/community/ruby-rugged/libgit2-fixture-dir.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/ruby-rugged/libgit2-fixture-dir.patch')
-rw-r--r--community/ruby-rugged/libgit2-fixture-dir.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/community/ruby-rugged/libgit2-fixture-dir.patch b/community/ruby-rugged/libgit2-fixture-dir.patch
new file mode 100644
index 0000000000..9d6a24de38
--- /dev/null
+++ b/community/ruby-rugged/libgit2-fixture-dir.patch
@@ -0,0 +1,12 @@
+--- a/test/test_helper.rb
++++ b/test/test_helper.rb
+@@ -130,7 +130,8 @@
+ end
+
+ TEST_DIR = File.dirname(File.expand_path(__FILE__))
+- LIBGIT2_FIXTURE_DIR = File.expand_path("../../vendor/libgit2/tests/resources", __FILE__)
++ LIBGIT2_FIXTURE_DIR = ENV['LIBGIT2_FIXTURE_DIR'] \
++ || File.expand_path("../../vendor/libgit2/tests/resources", __FILE__)
+ end
+
+ class OnlineTestCase < TestCase