remove remaining references to sky_snapshot (#8665)

This commit is contained in:
Michael Goderbauer 2017-03-09 11:40:59 -08:00 committed by GitHub
parent d7ab9be2bd
commit edbfb17b62
2 changed files with 1 additions and 4 deletions

View file

@ -366,7 +366,7 @@ class FlutterEngine {
for (FileSystemEntity entity in dir.listSync()) {
if (entity is File) {
final String name = fs.path.basename(entity.path);
if (name == 'sky_snapshot' || name == 'sky_shell')
if (name == 'sky_shell')
os.makeExecutable(entity);
}
}

View file

@ -99,9 +99,6 @@ class RunCommand extends RunCommandBase {
help: 'Path to a pre-built kernel blob to use when running.\n'
'This option only exists for testing new kernel code execution on devices\n'
'and is not needed during normal application development.');
argParser.addOption('snapshotter',
hide: !verboseHelp,
help: 'Specify the path to the sky_snapshot binary.');
argParser.addOption('packages',
hide: !verboseHelp,
help: 'Specify the path to the .packages file.');