Skip to content

Commit

Permalink
Fixed bug when validating deployment.app config
Browse files Browse the repository at this point in the history
  • Loading branch information
davemoore- committed May 18, 2022
1 parent 55b3038 commit 2acdfec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microbs.io/cli",
"version": "0.2.12",
"version": "0.2.13",
"description": "microservices observability",
"license": "Apache-2.0",
"url": "https://microbs.io",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const validateConfig = () => {
const validateApps = async () => {
logger.info('')
logger.info('Validating apps...')
const appName = config.get(`deployment.plugins`)
const appName = config.get(`deployment.app`)
if (!appName) {
logUnknown(`'deployment.apps' does not name a plugin.`)
} else {
Expand Down

0 comments on commit 2acdfec

Please sign in to comment.