Skip to content

Commit f41f7a7

Browse files
author
Simon Hirscher
committed
Fix paths in bin/cosmere
1 parent abbaf04 commit f41f7a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/cosmere

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Options:
1212
`);
1313

1414
if (options['generate-config']) {
15-
require('../dist/src/GenerateCommand').default(options['--config']);
15+
require('../dist/src/cli/GenerateCommand').default(options['--config']);
1616
} else {
17-
require('../dist/src/MainCommand').default(options['--config'], options['--force'])
17+
require('../dist/src/cli/MainCommand').default(options['--config'], options['--force'])
1818
.then()
1919
.catch(e => {
2020
require('signale').fatal(e);
2121
process.exit(1);
2222
}
2323
);
24-
}
24+
}

0 commit comments

Comments
 (0)