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

Side by Side Diff: remoting/tools/get_mac_crd_version.sh

Issue 10332303: [Chromoting] Simple script to print out installed mac version info. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add copyright header Created 8 years, 7 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
(Empty)
1 #!/bin/sh
2
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
5 # found in the LICENSE file.
6
7 ME2ME_HOST="/Library/PrivilegedHelperTools/org.chromium.chromoting.me2me_host.ap p"
8 UNINSTALLER="/Applications/Chrome Remote Desktop Host Uninstaller.app"
9 PREFPANE="/Library/PreferencePanes/org.chromium.chromoting.prefPane"
10 KEYSTONE="/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle"
11
12 INFO_PLIST="Contents/Info.plist"
13
14 set -e -u
15
16 function print_plist_version {
17 local name="${1}"
18 local file="${2}"
19 set `PlistBuddy -c 'Print CFBundleVersion' "${file}/${INFO_PLIST}"`
20 echo "${name} version = ${1}"
21 }
22
23 print_plist_version "Me2me host" "${ME2ME_HOST}"
24 print_plist_version "Uninstaller" "${UNINSTALLER}"
25 print_plist_version "PreferencePane" "${PREFPANE}"
26 print_plist_version "Keystone" "${KEYSTONE}"
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