diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-07-14 06:23:41 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-07-14 06:23:41 +0000 |
commit | e11c4db848d4b9c0e8a2bd1752ec87a451ff3a55 (patch) | |
tree | 373b2b71daa93f5ca8696e707f6034ad27dbd170 | |
parent | 0eac0164c259fb4a9d824361029f175e3eeede5c (diff) |
Use http instead https for anonymous readonly check out.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75621 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NewNightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index fd38a05cf0..23982f1769 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -101,7 +101,7 @@ my $HOME = $ENV{'HOME'}; my $SVNURL = $ENV{"SVNURL"}; $SVNURL = 'http://llvm.org/svn/llvm-project' unless $SVNURL; my $TestSVNURL = $ENV{"TestSVNURL"}; -$TestSVNURL = 'https://llvm.org/svn/llvm-project' unless $TestSVNURL; +$TestSVNURL = 'http://llvm.org/svn/llvm-project' unless $TestSVNURL; my $CVSRootDir = $ENV{'CVSROOT'}; $CVSRootDir = "/home/vadve/shared/PublicCVS" unless $CVSRootDir; my $BuildDir = $ENV{'BUILDDIR'}; |