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

View File

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

View File

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