From f16d98458229faa7ef64087bfe771fe3486792e9 Mon Sep 17 00:00:00 2001 From: Matthew Grasmick Date: Mon, 5 Dec 2016 15:51:10 -0500 Subject: [PATCH] Fixes #716: Removing cruft from deployment artifact. (#746) --- phing/files/.gitignore | 5 +++++ scripts/linux/install-chrome.sh | 1 + 2 files changed, 6 insertions(+) diff --git a/phing/files/.gitignore b/phing/files/.gitignore index bc5be6736..8de0c74b9 100644 --- a/phing/files/.gitignore +++ b/phing/files/.gitignore @@ -1,11 +1,16 @@ # This file will be copied into the docroot of the build artifact. local.* *.local +project.local.yml # Ignore paths that contain user-generated content. docroot/sites/*/files docroot/sites/*/private +# Ignore build artifacts +tmp +reports + # OS X .DS_Store .AppleDouble diff --git a/scripts/linux/install-chrome.sh b/scripts/linux/install-chrome.sh index d83d93682..9ed81a6a6 100755 --- a/scripts/linux/install-chrome.sh +++ b/scripts/linux/install-chrome.sh @@ -17,4 +17,5 @@ if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then unzip chromedriver_linux64.zip chmod +x chromedriver mv -f chromedriver $BIN_DIR + rm chromedriver_linux64.zip fi