Set https for manifest file.

This commit is contained in:
Anton Medvedev 2016-11-05 12:05:41 +07:00
parent e397486eb2
commit 50163385bd
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
.php_cs.cache
/vendor/
/test/localhost
*.phar
/.vagrant
deploy.php

View File

@ -53,7 +53,7 @@ class Application extends Console
{
$selfUpdate = new PharUpdateCommand('self-update');
$selfUpdate->setDescription('Updates deployer.phar to the latest version');
$selfUpdate->setManifestUri('http://deployer.org/manifest.json');
$selfUpdate->setManifestUri('https://deployer.org/manifest.json');
return $selfUpdate;
}