Skip to content

Commit 3969e2a

Browse files
committed
fix(src): remove unused as flag command
1 parent 81f818b commit 3969e2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function index(): Promise<void> {
1717
}
1818

1919
for (const arg of args) {
20-
if (!knownFlags.has(arg) && isNaN(Number(arg))) {
20+
if (!knownFlags.has(arg)) {
2121
console.log(`Unknown flag: '${arg}'`);
2222
console.log("Try 'bfb help' for usage information");
2323
return;

0 commit comments

Comments
 (0)