Titan-BT-7274 commented on a change in pull request #225: URL: https://github.com/apache/gora/pull/225#discussion_r512013736
########## File path: bin/gora.bat ########## @@ -0,0 +1,177 @@ +:: 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. + +:: +:: The script to run Java components. +:: +:: Environment Variables +:: +:: GORA_HEAPSIZE The maximum amount of heap to use, in MB. +:: Default is 1024. +:: +:: GORA_OPTS Extra Java runtime option. +:: + +:: resolve links - %0 may be a softlink +@echo off +setlocal enabledelayedexpansion +set THIS=%~f0 + +::if no args specified, show usage +if "%~1" == "" (GOTO ECHOOPTIONS) else (GOTO HAVEARGUMENTS) + +:ECHOOPTIONS +@echo Usage: run COMMAND [COMMAND options] +@echo where COMMAND is one of: +@echo goracompiler Run Compiler +@echo specificcompiler Run Avro Specific Compiler +@echo cassandranativecompiler Run Gora Cassandra Native Compiler +@echo dynamocompiler Run Gora DynamoDB Compiler +@echo goracirackspace Run the GoraCI Rackspace orchestration setup +@echo goracichef Run the GoraCI Chef software provisioning setup +@echo logmanager Run the tutorial log manager +@echo distributedlogmanager Run the tutorial distributed log manager +@echo loganalytics Run the tutorial log analytics +@echo loganalyticsspark Run the tutorial log analytics spark +@echo junit Run the given JUnit test +@echo version Print Gora version to terminal Review comment: Thank you. That does not happen to me. I'll find out what's wrong. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org