From 1669ee355226eb89fd45a22d65ddb1c18d1d2cab Mon Sep 17 00:00:00 2001 From: Anton Medvedev Date: Thu, 16 Mar 2017 20:48:55 +0700 Subject: [PATCH] Set http_user for travis --- test/recipe/deploy.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/recipe/deploy.php b/test/recipe/deploy.php index 1350afa2..9d194ee8 100644 --- a/test/recipe/deploy.php +++ b/test/recipe/deploy.php @@ -13,12 +13,16 @@ require 'recipe/common.php'; // Configuration set('repository', __DIR__ . '/../fixture/repository'); +set('http_user', getenv('USER')); + set('shared_files', [ 'app/config/parameters.yml', ]); + set('shared_dirs', [ 'app/logs', ]); + set('writable_dirs', [ 'app/cache', ]);