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

Side by Side Diff: chrome/tools/build/mac/build_app_dmg

Issue 10073020: mac: Make build_app_dmg more silent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 2
3 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Normally you don't want to build a dmg out of a debug build. 7 # Normally you don't want to build a dmg out of a debug build.
8 if [ "${CONFIGURATION}" != "Release" ] ; then 8 if [ "${CONFIGURATION}" != "Release" ] ; then
9 echo "warning: building dmg in non-release mode" >&2 9 echo "warning: building dmg in non-release mode" >&2
10 fi 10 fi
11 11
12 # Make sure we got the branding passed to us 12 # Make sure we got the branding passed to us
13 if [ $# -ne 1 ]; then 13 if [ $# -ne 1 ]; then
14 echo "error: missing branding as an argument" >&2 14 echo "error: missing branding as an argument" >&2
15 exit 1 15 exit 1
16 fi 16 fi
17 17
18 # fail on anything from here out 18 # fail on anything from here out
19 set -e 19 set -e
20 20
21 TOP="${SRCROOT}/.." 21 TOP="${SRCROOT}/.."
22 PKG_DMG="${SRCROOT}/installer/mac/pkg-dmg" 22 PKG_DMG="${SRCROOT}/installer/mac/pkg-dmg"
23 BRAND_SCRIPT="${TOP}/build/branding_value.sh" 23 BRAND_SCRIPT="${TOP}/build/branding_value.sh"
24 24
25 BUILD_BRANDING=$1 25 BUILD_BRANDING=$1
26 26
27 # show things as we run them
28 set -x
29
30 APP_NAME=$("${BRAND_SCRIPT}" "${BUILD_BRANDING}" PRODUCT_FULLNAME) 27 APP_NAME=$("${BRAND_SCRIPT}" "${BUILD_BRANDING}" PRODUCT_FULLNAME)
31 DMG_NAME=$(echo "${APP_NAME}" | sed "s/ //g") 28 DMG_NAME=$(echo "${APP_NAME}" | sed "s/ //g")
32 29
33 SRC_APP_PATH="${BUILT_PRODUCTS_DIR}/${APP_NAME}.app" 30 SRC_APP_PATH="${BUILT_PRODUCTS_DIR}/${APP_NAME}.app"
34 VOL_NAME="${APP_NAME}" 31 VOL_NAME="${APP_NAME}"
35 DST_DMG_PATH="${BUILT_PRODUCTS_DIR}/${DMG_NAME}" 32 DST_DMG_PATH="${BUILT_PRODUCTS_DIR}/${DMG_NAME}.dmg"
36 33
37 # Call the real working 34 # Call the real working
38 "${PKG_DMG}" --source /var/empty \ 35 "${PKG_DMG}" --source /var/empty \
39 --target "${DST_DMG_PATH}" \ 36 --target "${DST_DMG_PATH}" \
40 --format UDBZ \ 37 --format UDBZ \
38 --verbosity 0 \
41 --volname "${VOL_NAME}" \ 39 --volname "${VOL_NAME}" \
42 --tempdir "${TEMP_DIR}" \ 40 --tempdir "${TEMP_DIR}" \
43 --copy "${SRC_APP_PATH}/:/${APP_NAME}.app/" 41 --copy "${SRC_APP_PATH}/:/${APP_NAME}.app/"
OLDNEW
« 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