Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8120)

Unified Diff: build/mac/tweak_app_infoplist

Issue 165379: Tweak indentation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/mac/tweak_app_infoplist
===================================================================
--- build/mac/tweak_app_infoplist (revision 23075)
+++ build/mac/tweak_app_infoplist (working copy)
@@ -75,14 +75,14 @@
SVN_REVISION=$(echo "${SVN_INFO}" | sed -Ene 's/^Revision: (.*)$/\1/p')
if [ -z "${SVN_REVISION}" ] ; then
GIT_INFO=$(git log -1 --grep=git-svn-id --format=%b 2>/dev/null || true)
- SVN_REVISION=$(echo "${GIT_INFO}" \
- | sed -Ene 's/^git-svn-id: .*@([0-9]+).*$/\1/p')
+ SVN_REVISION=$(echo "${GIT_INFO}" | \
+ sed -Ene 's/^git-svn-id: .*@([0-9]+).*$/\1/p')
# Finding the revision for git and svn has failed.
if [ -z "${SVN_REVISION}" ] ; then
echo "Could not determine svn revision. This may be OK." >&2
else
- SVN_PATH=$(echo "${GIT_INFO}" \
- | sed -Ene 's%^git-svn-id: .*/chrome/(.*)@.*$%/\1%p')
+ SVN_PATH=$(echo "${GIT_INFO}" | \
+ sed -Ene 's%^git-svn-id: .*/chrome/(.*)@.*$%/\1%p')
fi
else
# Grab the path to the source root in the Subversion repository by taking
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698