pull option fix

This commit is contained in:
Juan Ferrer 2022-05-02 12:03:07 +02:00
parent d0dc1072d1
commit 726e979544
3 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ class Pull {
params: {
force: 'Do it even if there are local changes',
checkout: 'Move to same database commit before pull',
updateAll: 'Update all routines',
update: 'Update all routines',
sums: 'Save SHA sums of all objects'
},
operand: 'remote'
@ -22,13 +22,13 @@ class Pull {
alias: {
force: 'f',
checkout: 'c',
updateAll: 'u',
update: 'u',
sums: 's'
},
boolean: [
'force',
'checkout',
'updateAll',
'update',
'sums'
]
};

View File

@ -1,6 +1,6 @@
{
"name": "myvc",
"version": "1.4.5",
"version": "1.4.6",
"author": "Verdnatura Levante SL",
"description": "MySQL Version Control",
"license": "GPL-3.0",

View File

@ -8,6 +8,6 @@
"type": "git"
},
"dependencies": {
"myvc": "^1.4.5"
"myvc": "^1.4.6"
}
}