Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 26621 invoked from network); 15 Dec 2008 01:48:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Dec 2008 01:48:53 -0000 Received: (qmail 68949 invoked by uid 500); 15 Dec 2008 01:49:06 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 68911 invoked by uid 500); 15 Dec 2008 01:49:06 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 68902 invoked by uid 99); 15 Dec 2008 01:49:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Dec 2008 17:49:06 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Dec 2008 01:48:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 881DE23888F1; Sun, 14 Dec 2008 17:48:30 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r726604 - /geronimo/gshell/trunk/gshell-assembly/src/main/underlay/bin/gsh.bat Date: Mon, 15 Dec 2008 01:48:30 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081215014830.881DE23888F1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Sun Dec 14 17:48:30 2008 New Revision: 726604 URL: http://svn.apache.org/viewvc?rev=726604&view=rev Log: Update comments to pass license-check Modified: geronimo/gshell/trunk/gshell-assembly/src/main/underlay/bin/gsh.bat Modified: geronimo/gshell/trunk/gshell-assembly/src/main/underlay/bin/gsh.bat URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-assembly/src/main/underlay/bin/gsh.bat?rev=726604&r1=726603&r2=726604&view=diff ============================================================================== --- geronimo/gshell/trunk/gshell-assembly/src/main/underlay/bin/gsh.bat (original) +++ geronimo/gshell/trunk/gshell-assembly/src/main/underlay/bin/gsh.bat Sun Dec 14 17:48:30 2008 @@ -1,26 +1,26 @@ +@REM +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM http://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM @if "%DEBUG%" == "" @echo off -rem -rem Licensed to the Apache Software Foundation (ASF) under one -rem or more contributor license agreements. See the NOTICE file -rem distributed with this work for additional information -rem regarding copyright ownership. The ASF licenses this file -rem to you under the Apache License, Version 2.0 (the -rem "License"); you may not use this file except in compliance -rem with the License. You may obtain a copy of the License at -rem -rem http://www.apache.org/licenses/LICENSE-2.0 -rem -rem Unless required by applicable law or agreed to in writing, -rem software distributed under the License is distributed on an -rem "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -rem KIND, either express or implied. See the License for the -rem specific language governing permissions and limitations -rem under the License. -rem - -rem -rem $Rev$ $Date$ -rem + +@REM +@REM $Rev$ $Date$ +@REM if "%OS%"=="Windows_NT" setlocal enableextensions set ERRORLEVEL=0 @@ -46,16 +46,16 @@ if "%GSHELL_HOME%" == "" set GSHELL_HOME=%DIRNAME%.. :init -rem Get command-line arguments, handling Windowz variants +@REM Get command-line arguments, handling Windowz variants if not "%OS%" == "Windows_NT" goto win9xME_args if "%eval[2+2]" == "4" goto 4NT_args -rem Regular WinNT shell +@REM Regular WinNT shell set ARGS=%* goto execute :win9xME_args -rem Slurp the command line arguments. This loop allows for an unlimited number +@REM Slurp the command line arguments. This loop allows for an unlimited number set ARGS= :win9xME_args_slurp @@ -65,14 +65,14 @@ goto win9xME_args_slurp :4NT_args -rem Get arguments from the 4NT Shell from JP Software +@REM Get arguments from the 4NT Shell from JP Software set ARGS=%$ :execute set BOOTJAR=%GSHELL_HOME%\lib\boot\gshell-bootstrap.jar -rem Start the JVM +@REM Start the JVM "%JAVACMD%" %JAVA_OPTS% -jar "%BOOTJAR%" %ARGS% :end