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

Side by Side Diff: remoting/host/installer/mac/Keystone/GoogleSoftwareUpdate.pkg/Contents/Resources/InstallationCheck

Issue 9956155: [Chromoting] Keystone installer package. (Closed) Base URL: svn://chrome-svn/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
Property Changes:
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
OLDNEW
(Empty)
1 #!/bin/sh
2 # Copyright Google 2008, Inc. All Rights Reserved.
3
4 # Require 10.4 or later
5 VERS=$(/usr/bin/sw_vers -productVersion | /usr/bin/sed 's/\./ /g' | /usr/bin/awk '{print $2}')
6 if [ x$VERS = x ] ; then
7 exit 0
8 elif [ $VERS -lt 4 ] ; then
9 exit 112
10 fi
11
12 exit 0
13
14
15
16
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698