diff --git a/tools/lib/src/build_examples_command.dart b/tools/lib/src/build_examples_command.dart index 47eccbf19..a9fa71def 100644 --- a/tools/lib/src/build_examples_command.dart +++ b/tools/lib/src/build_examples_command.dart @@ -23,16 +23,6 @@ class BuildExamplesCommand extends PackageLoopingCommand { bool builtSomething = false; for (final RepositoryPackage example in package.getExamples()) { - final String packageName = getRelativePosixPath( - example.directory, - from: packagesDir, - ); - // TODO(jsuya): Temporarily skip build test of wearable_rotary. - if (packageName == 'wearable_rotary/example') { - builtSomething = true; - print('Skip build test of wearable_rotary/example.'); - continue; - } int exitCode = await processRunner.runAndStream( 'flutter-tizen', ['pub', 'get'], @@ -54,6 +44,10 @@ class BuildExamplesCommand extends PackageLoopingCommand { workingDir: example.directory, ); if (exitCode != 0) { + final String packageName = getRelativePosixPath( + example.directory, + from: packagesDir, + ); errors.add(packageName); } }