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:
authorAlan McGovern <alan@xamarin.com>2015-09-15 11:25:16 +0300
committerAlan McGovern <alan@xamarin.com>2015-09-15 11:25:16 +0300
commit7036681a43d890b72715235370f4cea7417111f1 (patch)
tree1b0e05545ca2a12c4362f6363684e20e85970eae /dependency_checker.rb
parent19ee8aa101377a518d3c338eec81c9646c0f36d0 (diff)
Use suitable downloader urls for mono and xammac
Diffstat (limited to 'dependency_checker.rb')
-rw-r--r--dependency_checker.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/dependency_checker.rb b/dependency_checker.rb
index e56fa614e2..cfc10b45f0 100644
--- a/dependency_checker.rb
+++ b/dependency_checker.rb
@@ -2,11 +2,11 @@ require 'pp'
XAMARIN_MAC_MIN_VERSION="2.3"
XAMARIN_MAC_VERSION=lambda { product_version ("/Library/Frameworks/Xamarin.Mac.framework/Versions/Current/bin/mmp") }
-XAMARIN_MAC_URL="http://storage.bos.internalx.com/macios-mac-cycle6/1e/1e6896dd96bc9387725b4332175baace1bef8186/xamarin.mac-2.3.0.135.pkg"
+XAMARIN_MAC_URL="http://www.xamarin.com"
MONO_MIN_VERSION="4.2"
MONO_VERSION=lambda { mono_version("/Library/Frameworks/Mono.framework/Versions/Current/bin/mono") }
-MONO_URL="http://storage.bos.internalx.com/mono-mac-4.2.0-branch/27/2701b194139f851f54660bd66c97074b041427fd/MonoFramework-MDK-4.2.0.207.macos10.xamarin.x86.pkg"
+MONO_URL="http://mono-project.com"
class String
def red; "\e[31m#{self}\e[0m" end
@@ -54,4 +54,4 @@ def check_monodevelop_dependencies()
end
$stdout.sync = true
-check_monodevelop_dependencies() if __FILE__==$0 \ No newline at end of file
+check_monodevelop_dependencies() if __FILE__==$0