blob: eea83b0db6d4ab0d6f37f3b39efa5e08cb04ea27 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import '../globals.dart';
import 'build.dart';
class BuildFlxCommand extends BuildSubCommand {
BuildFlxCommand({bool verboseHelp: false});
@override
final String name = 'flx';
@override
final String description = 'Deprecated';
@override
final String usageFooter = 'FLX archives are deprecated.';
@override
Future<Null> runCommand() async {
await super.runCommand();
printError("'build flx' is no longer supported. Instead, use 'build "
"bundle' to build and assemble the application code and resources "
'for your app.');
}
}