From 726e9795447963a12e6e6f049b1fa129494a681c Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Mon, 2 May 2022 12:03:07 +0200 Subject: [PATCH] pull option fix --- myvc-pull.js | 6 +++--- package.json | 2 +- template/package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/myvc-pull.js b/myvc-pull.js index e5d7804..ee45910 100755 --- a/myvc-pull.js +++ b/myvc-pull.js @@ -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' ] }; diff --git a/package.json b/package.json index 756eef4..381081f 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/template/package.json b/template/package.json index b9dfe8a..c0e4c20 100644 --- a/template/package.json +++ b/template/package.json @@ -8,6 +8,6 @@ "type": "git" }, "dependencies": { - "myvc": "^1.4.5" + "myvc": "^1.4.6" } }