Skip to content

Set the content type during publish to application/gzip #1671

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/src/command/lish.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import 'dart:async';

import 'package:http/http.dart' as http;
import 'package:http_parser/http_parser.dart' as http_parser;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not typically imported with a prefix.


import '../ascii_tree.dart' as tree;
import '../command.dart';
Expand Down Expand Up @@ -87,7 +88,9 @@ class LishCommand extends PubCommand {
request.followRedirects = false;
request.files.add(new http.MultipartFile.fromBytes(
'file', packageBytes,
filename: 'package.tar.gz'));
filename: 'package.tar.gz',
contentType: new http_parser.MediaType('application', 'gzip')));

var postResponse =
await http.Response.fromStream(await client.send(request));

Expand Down