Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix build.
  • Loading branch information
dvander committed Oct 13, 2023
1 parent db11f8a commit e0bb71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AMBuildScript
Expand Up @@ -151,7 +151,7 @@ class MMSConfig(object):
else:
sdk_path = ResolveEnvPath(sdk.envvar, sdk.folder)
if sdk_path is None:
if use_all or sdk_name in sdk_list:
if (use_all and sdk_name != 'mock') or sdk_name in sdk_list:
raise Exception('Could not find a valid path for {0}'.format(sdk.envvar))
not_found.append(sdk_name)
continue
Expand Down

0 comments on commit e0bb71f

Please sign in to comment.