Skip to content

Commit a91a412

Browse files
committed
fix(cmd): Make locate stdout friendly
1 parent c9cc74d commit a91a412

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmds/util/locate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ exports.command = ['locate'];
2121
exports.desc = 'Show the location where Eask is installed';
2222

2323
exports.handler = async (argv) => {
24-
process.stdout.write(`✓ Eask located in '` + UTIL.plugin_dir() + `'`);
24+
console.log(UTIL.plugin_dir());
2525
};

0 commit comments

Comments
 (0)