Changeset 2715

Show
Ignore:
Timestamp:
04/30/05 16:49:13 (3 years ago)
Author:
morris
Message:

Modify scripts for 10.4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • CPUMonitor/trunk/CPUMonitor.xcode/project.pbxproj

    r2708 r2715  
    158158                                080E96DDFE201D6D7F000001, 
    159159                                29B97315FDCFA39411CA2CEA, 
     160                                A59F26200823CAE7001CE5D0, 
    160161                                29B97317FDCFA39411CA2CEA, 
    161162                                29B97323FDCFA39411CA2CEA, 
     
    195196                                A51B26E7082031E700D76064, 
    196197                                A572891D0822B01400E0988A, 
    197                                 A57289120822B01400E0988A, 
    198198                                A57289180822B01400E0988A, 
    199                                 A572890F0822B01400E0988A, 
    200199                                A572891E0822B01400E0988A, 
    201                                 A57289110822B01400E0988A, 
    202200                                A572891A0822B01400E0988A, 
    203201                                A57289150822B01400E0988A, 
    204202                                A57289190822B01400E0988A, 
    205                                 A57289130822B01400E0988A, 
    206203                                A57289160822B01400E0988A, 
    207204                                A572890D0822B01400E0988A, 
    208                                 A57289140822B01400E0988A, 
    209205                                A572890B0822B01400E0988A, 
    210                                 A57289100822B01400E0988A, 
    211206                                A572890C0822B01400E0988A, 
    212207                                A572891C0822B01400E0988A, 
     208                                A57289120822B01400E0988A, 
     209                                A572890F0822B01400E0988A, 
     210                                A57289110822B01400E0988A, 
     211                                A57289130822B01400E0988A, 
     212                                A57289140822B01400E0988A, 
     213                                A57289100822B01400E0988A, 
    213214                                A572890E0822B01400E0988A, 
    214215                                A57289170822B01400E0988A, 
     
    991992                        }; 
    992993                }; 
     994                A59F26200823CAE7001CE5D0 = { 
     995                        children = ( 
     996                                A59F26230823CAFB001CE5D0, 
     997                                A59F26220823CAFB001CE5D0, 
     998                                A59F26210823CAFB001CE5D0, 
     999                        ); 
     1000                        isa = PBXGroup; 
     1001                        name = Scripts; 
     1002                        refType = 4; 
     1003                        sourceTree = "<group>"; 
     1004                }; 
     1005                A59F26210823CAFB001CE5D0 = { 
     1006                        fileEncoding = 5; 
     1007                        isa = PBXFileReference; 
     1008                        lastKnownFileType = text.script.perl; 
     1009                        path = version.pl; 
     1010                        refType = 4; 
     1011                        sourceTree = "<group>"; 
     1012                }; 
     1013                A59F26220823CAFB001CE5D0 = { 
     1014                        fileEncoding = 5; 
     1015                        isa = PBXFileReference; 
     1016                        lastKnownFileType = text.script.sh; 
     1017                        path = makedmg.sh; 
     1018                        refType = 4; 
     1019                        sourceTree = "<group>"; 
     1020                }; 
     1021                A59F26230823CAFB001CE5D0 = { 
     1022                        fileEncoding = 5; 
     1023                        isa = PBXFileReference; 
     1024                        lastKnownFileType = text.script.sh; 
     1025                        path = localize.sh; 
     1026                        refType = 4; 
     1027                        sourceTree = "<group>"; 
     1028                }; 
    9931029                A5D2C75A0822E041007EB5F3 = { 
    9941030                        buildActionMask = 2147483647; 
     
    10091045                        ); 
    10101046                        buildSettings = { 
    1011                                 OPTIMIZATION_CFLAGS = ""; 
    10121047                                OTHER_CFLAGS = ""; 
    10131048                                OTHER_LDFLAGS = ""; 
     
    10671102                        ); 
    10681103                        buildSettings = { 
    1069                                 OPTIMIZATION_CFLAGS = ""; 
    10701104                                OTHER_CFLAGS = ""; 
    10711105                                OTHER_LDFLAGS = ""; 
  • CPUMonitor/trunk/makedmg.sh

    r2708 r2715  
    2828ATTACH_TMP=$(mktemp -t attach) 
    2929 
    30 hdiutil attach -readwrite -mountpoint "$MOUNT_PATH" "$IMAGE_PATH_TMP" | tee "$ATTACH_TMP" 
    31  
    32 if [ $? -ne 0 ]; then 
    33         exit $? 
    34 fi 
     30hdiutil attach -readwrite -mountpoint "$MOUNT_PATH" "$IMAGE_PATH_TMP" | tee "$ATTACH_TMP" || exit 1 
    3531 
    3632open "$MOUNT_PATH" 
     
    3834osascript <<EOF 
    3935tell application "Finder" 
    40     set icon size of icon view options of window 1 to 128 
     36        set current view of window 1 to icon view 
     37        set icon size of icon view options of window 1 to 128 
    4138        set arrangement of icon view options of window 1 to arranged by name 
    4239end tell