Skip to content

Commit 002b44d

Browse files
committed
create-phar: uses https
1 parent 47e06a5 commit 002b44d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/create-phar/create-phar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
function compressJs($s)
1111
{
1212
if (function_exists('curl_init')) {
13-
$curl = curl_init('http://closure-compiler.appspot.com/compile');
13+
$curl = curl_init('https://closure-compiler.appspot.com/compile');
1414
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
1515
curl_setopt($curl, CURLOPT_POST, 1);
1616
curl_setopt($curl, CURLOPT_POSTFIELDS, 'output_info=compiled_code&js_code=' . urlencode($s));

0 commit comments

Comments
 (0)