Skip to content

Commit

Permalink
fix(program-folders): remove warning when no program folders are present
Browse files Browse the repository at this point in the history
  • Loading branch information
krishna-acondy committed Jan 11, 2021
1 parent 8793470 commit b20e319
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,6 @@ export async function getProgramFolders(targetName: string) {
programFolders = programFolders.concat(target.programFolders)
}

if (!programFolders.length) {
process.logger?.warn(
'No program folders found. If you have SAS program dependencies, please specify the program paths in the `programFolders` array in your configuration.'
)
}
return programFolders
}

Expand All @@ -291,11 +286,6 @@ export async function getMacroFolders(targetName: string) {
macroFolders = macroFolders.concat(target.programFolders)
}

if (!macroFolders.length) {
process.logger?.warn(
'No program folders found. If you have SAS program dependencies, please specify the program paths in the `programFolders` array in your configuration.'
)
}
return macroFolders
}

Expand Down

0 comments on commit b20e319

Please sign in to comment.