From 5a264a6347ef39fe7c09c82942e918d584ba1a0e Mon Sep 17 00:00:00 2001
From: Dorian Pula <dorian.pula@gmail.com>
Date: Thu, 26 May 2016 01:27:16 +0000
Subject: [PATCH] Make sure that install without asking bitbucket-pipelines.yml

---
 bitbucket-pipelines.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
index f23f6be..1f34bf6 100644
--- a/bitbucket-pipelines.yml
+++ b/bitbucket-pipelines.yml
@@ -7,12 +7,12 @@ pipelines:
     - step:
         script: # Modify the commands below to build your repository.
           - apt-get update
-          - apt-get install apt-transport-https
+          - apt-get install -y apt-transport-https
           - curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
           - echo 'deb https://deb.nodesource.com/node_5.x jessie main' > /etc/apt/sources.list.d/nodesource.list
           - echo 'deb-src https://deb.nodesource.com/node_5.x jessie main' >> /etc/apt/sources.list.d/nodesource.list
           - apt-get update
-          - apt-get install nodejs
+          - apt-get install -y nodejs
           - pip install -r requirements-dev.txt
           - npm install -g coffeescript karma-cli browserify
           - npm install