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

Unified Diff: chrome/tools/build/mac/copy_mcx_manifest.sh

Issue 3287003: Reland r57812 (Add the new Mac manifest to the application bundle) and remove dummy translations (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: one more rebase Created 10 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 | « chrome/chrome_exe.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/mac/copy_mcx_manifest.sh
diff --git a/chrome/tools/build/mac/copy_mcx_manifest.sh b/chrome/tools/build/mac/copy_mcx_manifest.sh
deleted file mode 100755
index fc4cbfc215f89e32befd2adbe2c14df8d0368cd6..0000000000000000000000000000000000000000
--- a/chrome/tools/build/mac/copy_mcx_manifest.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-# Copyright (c) 2010 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-set -e
-
-if [[ ${#} -ne 4 ]]; then
- echo "usage: ${0} APP_NAME IDENTIFIER SOURCE DESTINATION" >&2
- exit 1
-fi
-
-APP_NAME="${1}"
-IDENTIFIER=${2}
-SOURCE=${3}
-DESTINATION=${4}
-
-# All hail sed.
-exec sed -e "s/@APP_NAME@/${APP_NAME}/g" \
- -e "s/@CHROMIUM_BUNDLE_ID@/${IDENTIFIER}/g" \
- "${SOURCE}" > "${DESTINATION}"
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698