Skip to content

Commit 60f8e3f

Browse files
committed
Fix Annotation
View changelog entry #102 for details.
1 parent 37cdb65 commit 60f8e3f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

changelog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
(#102)[11/19/2017-20:44 0.6.1 Sergix]
2+
Fixed issue with Command annotation in Files.move().
3+
Pushed updates to Git.
4+
15
(#101)[11/19/2017-16:23 0.6.1 Sergix]
26
Removed org.reflections import. JTerm.initCommands() has been updated to compensate.
37
Closed #40.

init.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo off
22
cls
33

4-
set JTERM_VERSION=0.6.2
4+
set JTERM_VERSION=0.7.0
55

66
prompt dev~JTerm/

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>sergix</groupId>
77
<artifactId>jterm</artifactId>
8-
<version>0.6.2</version>
8+
<version>0.7.0</version>
99
<packaging>jar</packaging>
1010
<description>
1111
JTerm is a cross-platform terminal designed for simple use and to run batch files.

src/main/java/jterm/command/Files.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
public class Files {
3636
// @ojles and @Kaperskyguru
37-
@Command(name = "mv", "move", minOptions = 2)
37+
@Command(name = {"mv", "move"}, minOptions = 2)
3838
public static void move(List<String> options) {
3939
String sourceName = Util.getFullPath(options.get(0));
4040
String destinationName = Util.getFullPath(options.get(1));

0 commit comments

Comments
 (0)