Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Sep 17, 2024
1 parent a422a9d commit e95a093
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions wiresdk_sidekick/lib/src/commands/recreate_examples_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,20 @@ class RecreateExamplesCommand extends Command {
build(platformName: 'android', buildArgs: ['apk']);
build(platformName: 'ios', buildArgs: ['ios', '--no-codesign']);
build(
platformName: 'macos',
buildArgs: ['macos'],
skip: () => !Platform.isMacOS);
platformName: 'macos',
buildArgs: ['macos'],
skip: () => !Platform.isMacOS,
);
build(
platformName: 'win',
buildArgs: ['windows'],
skip: () => !Platform.isWindows);
platformName: 'win',
buildArgs: ['windows'],
skip: () => !Platform.isWindows,
);
build(
platformName: 'linux',
buildArgs: ['linux'],
skip: () => !Platform.isLinux);
platformName: 'linux',
buildArgs: ['linux'],
skip: () => !Platform.isLinux,
);

stdout.write('\n');
}
Expand Down

0 comments on commit e95a093

Please sign in to comment.