Upgraded to jdb-util-3.2

This commit is contained in:
Joanthan Bernard 2014-11-19 12:52:03 -06:00
parent 12f87afe63
commit 2c8180d9b2
6 changed files with 4 additions and 4 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,8 +1,8 @@
#Wed, 16 Apr 2014 13:37:30 -0500
#Wed, 19 Nov 2014 12:50:01 -0600
lib.local=true
name=jdb-gtd
version=1.9
version=1.10
nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath
executable.jar=true
main.class=com.jdblabs.gtd.cli.GTDCLI
build.number=6
build.number=1

View File

@ -203,7 +203,7 @@ public class GTDCLI {
if (opts.h) { printUsage(null); return }
if (opts.v) { println "GTD CLI v$VERSION"; return }
if (opts.d) workingDir = new File(opts.d)
if (opts.d) workingDir = new File(opts.d[0])
/// View the arguments as a [`LinkedList`][1] so we can use [`peek`][2]
/// and [`poll`][3].