mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-19 14:17:40 +00:00
chore(common): fixup Commander call
This commit is contained in:
parent
f69f28bbd5
commit
253dea0ba6
1 changed files with 2 additions and 1 deletions
|
|
@ -1,10 +1,11 @@
|
|||
#!/usr/bin/env node
|
||||
import * as program from 'commander';
|
||||
import { Command } from 'commander';
|
||||
import hextobin from './index.js';
|
||||
|
||||
let inputFilename: string = "";
|
||||
let outputFilename: string = "";
|
||||
|
||||
const program = new Command();
|
||||
program
|
||||
.description(
|
||||
`Will convert the input file which is a hex dump to the output file. Hex dump can contain
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue