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

Side by Side Diff: remoting/host/installer/mac/do_signing.sh

Issue 10826076: [Chromoting] Remove check for too many args from signing script. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 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) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 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 # This script signs the Chromoting binaries, builds the Chrome Remote Desktop 7 # This script signs the Chromoting binaries, builds the Chrome Remote Desktop
8 # installer and then packages it into a .dmg. It requires that Iceberg be 8 # installer and then packages it into a .dmg. It requires that Iceberg be
9 # installed (for 'freeze'). 9 # installed (for 'freeze').
10 # 10 #
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 build_packages "${input_dir}" 197 build_packages "${input_dir}"
198 if [[ -n "${productsign_id}" ]]; then 198 if [[ -n "${productsign_id}" ]]; then
199 echo "Signing installer..." 199 echo "Signing installer..."
200 sign_installer "${input_dir}" "${keychain}" "${productsign_id}" 200 sign_installer "${input_dir}" "${keychain}" "${productsign_id}"
201 fi 201 fi
202 build_dmg "${input_dir}" "${output_dir}" 202 build_dmg "${input_dir}" "${output_dir}"
203 203
204 cleanup 204 cleanup
205 } 205 }
206 206
207 if [[ ${#} < 4 || ${#} > 5 ]]; then 207 if [[ ${#} < 4 ]]; then
208 usage 208 usage
209 exit 1 209 exit 1
210 fi 210 fi
211 211
212 main "${@}" 212 main "${@}"
213 exit ${?} 213 exit ${?}
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