Skip to content

Commit 0c27bde

Browse files
committed
Fixed usage message to show correct command line args
1 parent 69c21fa commit 0c27bde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: queryBatches.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var batchOperations = require("./batchOperations");
1111
var args = require('minimist')(process.argv.slice(2));
1212

1313
if (!args.region || !args.batchStatus) {
14-
console.log("You must provide an AWS Region Code, Batch Status, and optionally a start time and end time (as epoch seconds) to query from");
14+
console.log("You must provide an AWS Region Code (--region), Batch Status (--batchStatus), and optionally a start time (--startDate) and end time (--endDate - as epoch seconds) to query from");
1515
process.exit(ERROR);
1616
}
1717
var setRegion = args.region;

0 commit comments

Comments
 (0)