| 214 | |
| 215 | |
| 216 | Future<Nothing> decompress(const Path& input) |
| 217 | { |
| 218 | vector<string> argv = { |
| 219 | "gzip", |
| 220 | "-d", // Decompress. |
| 221 | input |
| 222 | }; |
| 223 | |
| 224 | return launch("gzip", argv) |
| 225 | .then([]() { return Nothing(); }); |
| 226 | } |
| 227 | |
| 228 | } // namespace command { |
| 229 | } // namespace internal { |