From 0d4aa0b8d1cc62953daf90922baac1fafd7d5089 Mon Sep 17 00:00:00 2001 From: Steve Rowe Date: Mon, 23 May 2016 15:47:06 -0400 Subject: [PATCH] When there are unpushed commits, print out the full command used to show the commits --- dev-tools/scripts/buildAndPushRelease.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-tools/scripts/buildAndPushRelease.py b/dev-tools/scripts/buildAndPushRelease.py index f1a7759c7ae..980ef84f2cb 100644 --- a/dev-tools/scripts/buildAndPushRelease.py +++ b/dev-tools/scripts/buildAndPushRelease.py @@ -62,9 +62,10 @@ def getGitRev(): if 'nothing to commit, working directory clean' not in status: raise RuntimeError('git clone is dirty:\n\n%s' % status) branch = os.popen('git rev-parse --abbrev-ref HEAD').read().strip() - unpushedCommits = os.popen('git log origin/%s..' % branch).read().strip() + command = 'git log origin/%s..' % branch + unpushedCommits = os.popen(command).read().strip() if len(unpushedCommits) > 0: - raise RuntimeError('There are unpushed commits - "git log origin.." output is:\n\n%s' % unpushedCommits) + raise RuntimeError('There are unpushed commits - "%s" output is:\n\n%s' % (command, unpushedCommits)) print(' git clone is clean') return os.popen('git rev-parse HEAD').read().strip()