From d2e8f9e344fbab1240220266b3e0b766782fa29d Mon Sep 17 00:00:00 2001 From: Dave Gramlich Date: Fri, 23 Sep 2016 17:05:56 -0400 Subject: [PATCH] testing: change command for getting updated files --- scripts/helpers.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/helpers.js b/scripts/helpers.js index 2a181802d62..e4f851bf0a1 100644 --- a/scripts/helpers.js +++ b/scripts/helpers.js @@ -71,14 +71,7 @@ Module.UMBRELLA = 'google-cloud'; Module.getUpdated = function() { cd(ROOT_DIR); - run([ - 'git remote add temp', - 'https://github.com/GoogleCloudPlatform/google-cloud-node.git' - ]); - - run('git fetch -q temp'); - - var output = run('git diff HEAD temp/master --name-only', { + var output = run('git diff HEAD^ --name-only', { stdio: null // prevents piping to the console });