cob-cli 2.44.0 → 2.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/cob-cli.js
CHANGED
|
@@ -40,7 +40,7 @@ program
|
|
|
40
40
|
.option('-l --legacy <folder>','import git history from legacy ClientConfs. <folder> should be path to server files inside ClienConfs.')
|
|
41
41
|
.option('-a --repoaccount <account url>', 'Specify git account to use', "git@gitlab.com:cob/")
|
|
42
42
|
.option('-V --verbose', 'verbose execution of tasks', increaseVerbosity, 0)
|
|
43
|
-
.description('Initializes a server customization repository. Use <servername>.cultofbits.
|
|
43
|
+
.description('Initializes a server customization repository. Use <servername>.cultofbits.pt (i.e. name without the FQDN)')
|
|
44
44
|
.action( init );
|
|
45
45
|
|
|
46
46
|
program
|
|
@@ -60,7 +60,7 @@ program
|
|
|
60
60
|
.option('-e --environment <name>', 'environment to use')
|
|
61
61
|
.option('-d --dashboard <name>', 'Aditionally specify a VUE dashboard to test')
|
|
62
62
|
.option('-l --localOnly', 'test only localFiles (customUI)')
|
|
63
|
-
.option('-s --servername <servername>', 'use <servername>.cultofbits.
|
|
63
|
+
.option('-s --servername <servername>', 'use <servername>.cultofbits.pt (i.e. name without the FQDN)')
|
|
64
64
|
.description('Test the customization')
|
|
65
65
|
.action( test );
|
|
66
66
|
|
|
@@ -69,7 +69,7 @@ program
|
|
|
69
69
|
.option('-f --force', 'skips comparisons')
|
|
70
70
|
.option('-e --environment <name>', 'environment to use')
|
|
71
71
|
.option('-V --verbose', 'verbose execution of tasks', increaseVerbosity, 0)
|
|
72
|
-
.option('-s --servername <servername>', 'use <servername>.cultofbits.
|
|
72
|
+
.option('-s --servername <servername>', 'use <servername>.cultofbits.pt (i.e. name without the FQDN)')
|
|
73
73
|
.description('Deploy customization to the server')
|
|
74
74
|
.action( deploy );
|
|
75
75
|
|
|
@@ -77,7 +77,7 @@ program
|
|
|
77
77
|
.command('updateFromServer')
|
|
78
78
|
.description('Updates local copy with current files on server, in case of changes made out of standard process.')
|
|
79
79
|
.option('-e --environment <name>', 'environment to use')
|
|
80
|
-
.option('-s --servername <servername>', 'use <servername>.cultofbits.
|
|
80
|
+
.option('-s --servername <servername>', 'use <servername>.cultofbits.pt (i.e. name without the FQDN)')
|
|
81
81
|
.option('-V --verbose', 'verbose execution of tasks', increaseVerbosity, 0)
|
|
82
82
|
.action( updateFromServer );
|
|
83
83
|
|
|
@@ -118,7 +118,7 @@ function _getDefaultServerForEnvironment(environmentName) {
|
|
|
118
118
|
|
|
119
119
|
/* ************************************ */
|
|
120
120
|
function _getServerFQDN(servername) {
|
|
121
|
-
return servername + ".cultofbits.
|
|
121
|
+
return servername + ".cultofbits.pt";
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
/* ************************************ */
|
package/package.json
CHANGED