Skip to content

Commit

Permalink
fix(build): add comma after command line options in import
Browse files Browse the repository at this point in the history
  • Loading branch information
Harjot1Singh committed May 18, 2019
1 parent 9671368 commit d76e3e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const main = async () => {
program
.version( '0.0.1' )
.arguments( '<input> <tableName>' )
.option( '-o --order-by <column>', 'order column name' )
.option( '-s --shabad-id <column>', 'Shabad ID column name' )
.option( '-S --source <column>', 'Source column name', -1 )
.option( '-2 --sttm-id <column>', 'STTM2 Shabad ID column name' )
.option( '-o, --order-by <column>', 'order column name' )
.option( '-s, --shabad-id <column>', 'Shabad ID column name' )
.option( '-S, --source <column>', 'Source column name', -1 )
.option( '-2, --sttm-id <column>', 'STTM2 Shabad ID column name' )
.option( '-t, --translation <column>', 'column name of a translation', ( val, prev ) => [ ...prev, val ], [] )
.option( '-p, --page <column>', 'Page number column name' )
.option( '-l, --line <column>', 'Line number column name' )
Expand Down

0 comments on commit d76e3e6

Please sign in to comment.