mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
✏️ Fix typos
This commit is contained in:
parent
d848850b67
commit
2dba63976b
|
@ -70,22 +70,22 @@ export class ExecuteAll extends Command {
|
||||||
if (flags.snapshot !== undefined) {
|
if (flags.snapshot !== undefined) {
|
||||||
if (fs.existsSync(flags.snapshot)) {
|
if (fs.existsSync(flags.snapshot)) {
|
||||||
if (!fs.lstatSync(flags.snapshot).isDirectory()) {
|
if (!fs.lstatSync(flags.snapshot).isDirectory()) {
|
||||||
console.log(`The paramenter --snapshot must be an existing directory`);
|
console.log(`The parameter --snapshot must be an existing directory`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.log(`The paramenter --snapshot must be an existing directory`);
|
console.log(`The parameter --snapshot must be an existing directory`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (flags.compare !== undefined) {
|
if (flags.compare !== undefined) {
|
||||||
if (fs.existsSync(flags.compare)) {
|
if (fs.existsSync(flags.compare)) {
|
||||||
if (!fs.lstatSync(flags.compare).isDirectory()) {
|
if (!fs.lstatSync(flags.compare).isDirectory()) {
|
||||||
console.log(`The paramenter --compare must be an existing directory`);
|
console.log(`The parameter --compare must be an existing directory`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.log(`The paramenter --compare must be an existing directory`);
|
console.log(`The parameter --compare must be an existing directory`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -93,7 +93,7 @@ export class ExecuteAll extends Command {
|
||||||
if (flags.output !== undefined) {
|
if (flags.output !== undefined) {
|
||||||
if (fs.existsSync(flags.output)) {
|
if (fs.existsSync(flags.output)) {
|
||||||
if (fs.lstatSync(flags.output).isDirectory()) {
|
if (fs.lstatSync(flags.output).isDirectory()) {
|
||||||
console.log(`The paramenter --output must be a writable file`);
|
console.log(`The parameter --output must be a writable file`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue