Skip to content

Commit f14d345

Browse files
fix patch of runtime environment (#296)
1 parent f6d61bb commit f14d345

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/interface/cli/commands/runtimeEnvironments/apply.cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const command = new Command({
7272
throw new CFError('Must specify the runtime you want to extends from');
7373
}
7474

75-
if (!option.dockerDaemonCluster || !option.runtimeSchedulerCluster || option.dockerDaemonNamespace || option.runtimeSchedulerNamespace) {
75+
if (!option.dockerDaemonCluster || !option.runtimeSchedulerCluster || !option.dockerDaemonNamespace || !option.runtimeSchedulerNamespace) {
7676
let extendsFromAccountRe = false;
7777
_.forEach(argv.extends, (runtime) => {
7878
if (!runtime.startsWith('system')) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.16.2",
3+
"version": "0.16.3",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)