Skip to content

Commit 188649a

Browse files
committed
fix: add await to checkFolder func call
1 parent 63b404c commit 188649a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = async (argvs) => {
2323
const timer = elapsed.start();
2424
const version = argv["release"] || "latest";
2525
const targetDir = path.resolve(argv["_"][0] || "./");
26-
const override = checkFolder(targetDir, argv);
26+
const override = await checkFolder(targetDir, argv);
2727
if (!override) {
2828
console.log(chalk.red("Aborted"));
2929
return;

0 commit comments

Comments
 (0)