diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-12 13:48:20 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-12 13:48:20 +0000 |
commit | 6d20e64ffbf49415bf4013d422a2604543d40851 (patch) | |
tree | fa0503ded1762f31ee66b5ce1123eb45dd4d83eb /build/mac | |
parent | 7423cb33e329bb72843a8a4ce959b3faf76789d3 (diff) | |
download | chromium_src-6d20e64ffbf49415bf4013d422a2604543d40851.zip chromium_src-6d20e64ffbf49415bf4013d422a2604543d40851.tar.gz chromium_src-6d20e64ffbf49415bf4013d422a2604543d40851.tar.bz2 |
Tweak indentation
Review URL: http://codereview.chromium.org/165379
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23182 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/mac')
-rwxr-xr-x | build/mac/tweak_app_infoplist | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/mac/tweak_app_infoplist b/build/mac/tweak_app_infoplist index f1885904..6af78e4 100755 --- a/build/mac/tweak_app_infoplist +++ b/build/mac/tweak_app_infoplist @@ -75,14 +75,14 @@ if [ "${USE_SVN}" = "1" ] ; then 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 |