Skip to content

Commit

Permalink
fix(ci): correct filter
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Borysenko <[email protected]>
  • Loading branch information
andrey18106 committed Jan 17, 2025
1 parent c5ba56f commit 331eb25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Service/ExAppService.php
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ public function getAppInfo(string $appId, ?string $infoXml, ?string $jsonInfo, ?
}
}
}
$envVars = array_values(array_filter($envVars, function ($envVar) {
$envVars = array_filter($envVars, function ($envVar) {
return $envVar['value'] !== '';
}));
});
$appInfo['external-app']['environment-variables'] = $envVars;
}
if (isset($deployOptions['mounts'])) {
Expand Down

0 comments on commit 331eb25

Please sign in to comment.