Skip to content

Commit

Permalink
fixed riot.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Jun 18, 2019
1 parent 6bb8c03 commit 2cc46dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.redislabs</groupId>
<artifactId>riot</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
<packaging>jar</packaging>
<name>RIOT</name>
<description>Redis Input/Output Tool</description>
Expand Down
4 changes: 2 additions & 2 deletions src/main/assembly/riot.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if "%OS%"=="Windows_NT" setlocal
if defined RIOT_HOME goto setJavaHome
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set RIOT_HOME=%DIRNAME%\..
set RIOT_HOME=%DIRNAME%

:setJavaHome
@rem Find java.exe
Expand Down Expand Up @@ -58,7 +58,7 @@ set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line

set CLASSPATH=.:%RIOT_HOME%\lib\*
set CLASSPATH=%RIOT_HOME%lib\*
"%JAVA_EXE%" -noverify -XX:TieredStopAtLevel=1 %JAVA_OPTS% -cp "%CLASSPATH%" ${start-class} %CMD_LINE_ARGS%

:end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;

@Command(name = "simple", description = "Import simple generated data")
@Command(name = "simple", description = "Generate random fixed-size string fields")
public class SimpleGeneratorImport extends AbstractImportReaderCommand {

@Option(names = "--field", description = "Field name and size in bytes.", paramLabel = "<name=size>")
Expand Down

0 comments on commit 2cc46dc

Please sign in to comment.