Skip to content

Commit

Permalink
fix: range l
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDaraW committed Aug 9, 2019
1 parent 5111742 commit 2316c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const getOptionArgs = (options: Options): string[] => {

if (options.range) {
if (typeof options.range.f === 'number') args.push(`-f ${options.range.f}`);
if (typeof options.range.l === 'number') args.push(`-f ${options.range.l}`);
if (typeof options.range.l === 'number') args.push(`-l ${options.range.l}`);
}

if (options.filter) {
Expand Down

0 comments on commit 2316c51

Please sign in to comment.