fix(push): wrong version name kills command

This commit is contained in:
Juan Ferrer 2024-02-22 10:10:29 +01:00
parent 79a374d460
commit c02eed742d
3 changed files with 9 additions and 7 deletions

View File

@ -244,13 +244,15 @@ class Push extends Command {
let apply = false;
if (!version)
if (!version) {
this.emit('version', version, versionDir, 'wrongDirectory');
else if (version.number.length != dbVersion.number.length)
continue;
} else if (version.number.length != dbVersion.number.length) {
this.emit('version', version, versionDir, 'badVersion');
else
apply = version.apply;
continue;
}
apply = version.apply;
if (apply) showLog = true;
if (showLog) this.emit('version', version, versionDir);
if (!apply) continue;

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@verdnatura/myt",
"version": "1.6.7",
"version": "1.6.8",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@verdnatura/myt",
"version": "1.6.7",
"version": "1.6.8",
"license": "GPL-3.0",
"dependencies": {
"@sqltools/formatter": "^1.2.5",

View File

@ -1,6 +1,6 @@
{
"name": "@verdnatura/myt",
"version": "1.6.7",
"version": "1.6.8",
"author": "Verdnatura Levante SL",
"description": "MySQL version control",
"license": "GPL-3.0",