Skip to content

Commit 7949b73

Browse files
brianjohnhannaAhmad Awais ⚡️
authored andcommitted
🐛 FIX: Correct shelljs mkdir syntax
1 parent 494c142 commit 7949b73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/create-guten-block/app/createPluginDir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module.exports = ( blockName, blockDir ) => {
4343
} else {
4444
return new Promise( async resolve => {
4545
// Where user is at the moment.
46-
shell.exec( `mkdir -p ${ blockName }` );
46+
shell.mkdir( '-p', blockName );
4747
await createGitignore( blockDir );
4848
resolve(true);
4949
} );

0 commit comments

Comments
 (0)