File tree 4 files changed +7
-3
lines changed
src/main/java/jterm/command
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
5
(#101)[11/19/2017-16:23 0.6.1 Sergix]
2
6
Removed org.reflections import. JTerm.initCommands() has been updated to compensate.
3
7
Closed #40.
Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
cls
3
3
4
- set JTERM_VERSION = 0.6.2
4
+ set JTERM_VERSION = 0.7.0
5
5
6
6
prompt dev~JTerm/
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >sergix</groupId >
7
7
<artifactId >jterm</artifactId >
8
- <version >0.6.2 </version >
8
+ <version >0.7.0 </version >
9
9
<packaging >jar</packaging >
10
10
<description >
11
11
JTerm is a cross-platform terminal designed for simple use and to run batch files.
Original file line number Diff line number Diff line change 34
34
35
35
public class Files {
36
36
// @ojles and @Kaperskyguru
37
- @ Command (name = "mv" , "move" , minOptions = 2 )
37
+ @ Command (name = { "mv" , "move" } , minOptions = 2 )
38
38
public static void move (List <String > options ) {
39
39
String sourceName = Util .getFullPath (options .get (0 ));
40
40
String destinationName = Util .getFullPath (options .get (1 ));
You can’t perform that action at this time.
0 commit comments