Fix sky_tools cache clear command

This commit is contained in:
James Robinson 2015-09-25 11:13:15 -07:00
parent 3638f9380d
commit 36c03cb40e

View File

@ -32,7 +32,7 @@ class _ClearCommand extends Command {
@override
Future<int> run() async {
ArtifactStore artifacts = new ArtifactStore(argResults['package-root']);
await artifacts.populate();
await artifacts.clear();
return 0;
}
}