Commit edbfb17b authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

remove remaining references to sky_snapshot (#8665)

parent d7ab9be2
......@@ -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);
}
}
......
......@@ -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.');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment