You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by mh...@apache.org on 2011/09/23 13:54:20 UTC

[Lucene.Net] svn commit: r1174681 - /incubator/lucene.net/trunk/build/scripts/validate-tool-chain.ps1

Author: mherndon
Date: Fri Sep 23 11:54:20 2011
New Revision: 1174681

URL: http://svn.apache.org/viewvc?rev=1174681&view=rev
Log:
adding apache license to posh script for detecting installs for tool chain

Modified:
    incubator/lucene.net/trunk/build/scripts/validate-tool-chain.ps1

Modified: incubator/lucene.net/trunk/build/scripts/validate-tool-chain.ps1
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/build/scripts/validate-tool-chain.ps1?rev=1174681&r1=1174680&r2=1174681&view=diff
==============================================================================
--- incubator/lucene.net/trunk/build/scripts/validate-tool-chain.ps1 (original)
+++ incubator/lucene.net/trunk/build/scripts/validate-tool-chain.ps1 Fri Sep 23 11:54:20 2011
@@ -1,4 +1,22 @@
-function DirExists($path) { 
+@'
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+  
+ http://www.apache.org/licenses/LICENSE-2.0
+  
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ 
+'@
+
+function DirExists($path) { 
  
     if ([IO.Directory]::Exists($path)) 
     {