Skip to content

Commit

Permalink
fix bug in 15436 (#15636)
Browse files Browse the repository at this point in the history
  • Loading branch information
dw511214992 authored Jun 9, 2021
1 parent 8ac66fc commit d7d67cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .scripts/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function isPackageFolderPath(folderPath: string, packagesToIgnore: string[]): bo
if (fileExistsSync(packageJsonFilePath)) {
const packageJson: PackageJson = readPackageJsonFileSync(packageJsonFilePath);
// Skip all perf framework projects from gulp pack
if (packageJson.name.startsWith("@azure-tests/")) {
if (packageJson?.name?.startsWith("@azure-tests/")) {
return false;
}
result = !contains(packagesToIgnore, packageJson.name!);
Expand Down

0 comments on commit d7d67cc

Please sign in to comment.