Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@xamarin.com>2016-11-16 15:34:58 +0300
committerMatt Ward <matt.ward@xamarin.com>2016-11-16 15:34:58 +0300
commit8a8ea655a444b373df6b0a7aaca6092e06c2dddc (patch)
tree3409442aa205fe3a314a13877d7cf4a5cd267f06
parent29f479ca9bfbf15401d2e65dc0e0dcf7bdcdf778 (diff)
[Ide] Fix path to license file when in app bundlevs-mac-preview1
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs
index 4de47d8866..1afb9ce108 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs
@@ -87,7 +87,7 @@ namespace MonoDevelop.Ide.Gui.Dialogs
var binDir = System.IO.Path.GetDirectoryName (System.Reflection.Assembly.GetEntryAssembly ().Location);
string licensePath = System.IO.Path.Combine (binDir, "branding", "License.txt");
if (Platform.IsMac) {
- var appDir = System.IO.Path.GetFullPath (System.IO.Path.Combine (binDir, "..", "..", "..", ".."));
+ var appDir = System.IO.Path.GetFullPath (System.IO.Path.Combine (binDir, "..", "..", "..", "..", ".."));
if (appDir.EndsWith (".app", StringComparison.Ordinal)) {
licensePath = System.IO.Path.Combine (appDir, "Contents", "License.txt");
}