We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84bd7ae commit c0a3450Copy full SHA for c0a3450
build.libgit2sharp.sh
@@ -2,8 +2,10 @@
2
3
EXTRADEFINE="$1"
4
5
-export MONO_OPTIONS=--debug
6
-export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/LibGit2Sharp/bin/Release:$LD_LIBRARY_PATH
+# Exporting a dummy value with ':' works around a linux mono bug where it
+# can't find libgit when the libgit2sharp assembly has been shadow copied.
7
+# This appears to only be a problem on linux and not osx.
8
+export LD_LIBRARY_PATH=:
9
10
# Required for NuGet package restore to run.
11
mozroots --import --sync
0 commit comments