Skip to content

Commit

Permalink
fix: undefined info bug introduced in 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fgardt authored Aug 5, 2024
1 parent 585b59d commit 458b40a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ async function verifyConditions(config, context) {
const errors = [];

try {
const info = await readInfoFile(config, context);

if (config.skip_validation !== true) {
const info = await readInfoFile(config, context);
isInfoValid(config, context, info);
}

Expand Down

0 comments on commit 458b40a

Please sign in to comment.