Skip to content

Commit e0bb71f

Browse files
committed
Fix build.
1 parent db11f8a commit e0bb71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AMBuildScript

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class MMSConfig(object):
151151
else:
152152
sdk_path = ResolveEnvPath(sdk.envvar, sdk.folder)
153153
if sdk_path is None:
154-
if use_all or sdk_name in sdk_list:
154+
if (use_all and sdk_name != 'mock') or sdk_name in sdk_list:
155155
raise Exception('Could not find a valid path for {0}'.format(sdk.envvar))
156156
not_found.append(sdk_name)
157157
continue

0 commit comments

Comments
 (0)