We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22adb00 commit 12e90b0Copy full SHA for 12e90b0
1 file changed
utils/createStrapi.js
@@ -41,12 +41,12 @@ const createStrapiProject = async () => {
41
async function checkPathAccessibility(targetPath) {
42
if (!path.isAbsolute(targetPath)) {
43
console.error(`${chalk.bold.red(
44
- `🛑 Path is not accessible. Please use an accessible path for creating project, exiting...`
+ ` \n 🛑 Path is not valid. Please use a valid path for creating project, exiting...`
45
)}\n`);
46
await goodbye();
47
process.exit(1);
48
} else {
49
- console.log(`${chalk.bold.green(`\n 📝 Path is accessible. Creating folder!\n`)}`);
+ console.log(`${chalk.bold.green(`\n 📝 Path is valid, proceeding! \n`)}`);
50
}
51
52
0 commit comments