Changeset 91
- Timestamp:
- 12/09/07 15:17:56 (4 years ago)
- Location:
- branches/beta
- Files:
-
- 3 edited
-
HandlerMenu_OSC.dir (modified) (previous)
-
castlib1/alexUtilities.ls (modified) (3 diffs)
-
castlib1/svn_Utilities.ls (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/beta/castlib1/alexUtilities.ls
r90 r91 2278 2278 if not(the platform contains "mac") then return fname 2279 2279 2280 if fname starts "/" then return fname -- huh? must already be an absolute unix path 2281 2280 2282 offs = offset(":", fname) 2281 2283 repeat while offs … … 2294 2296 if not(the platform contains "mac") then return fname 2295 2297 2298 if fname starts "/Volumes/" then 2299 olddelim = the itemdelimiter 2300 the itemdelimiter = "/" 2301 delete item 1 to 3 of fname 2302 the itemdelimiter = olddelim 2303 put "/" before fname 2304 end if 2305 2306 if not(fname starts "/") then return fname -- huh? doesn't seem to be an absolute unix path 2307 2296 2308 offs = offset("/", fname) 2297 2309 repeat while offs … … 2299 2311 offs = offset("/", fname) 2300 2312 end repeat 2313 2301 2314 osDir = getOsDirectory() 2302 2315 olddelim = the itemdelimiter -
branches/beta/castlib1/svn_Utilities.ls
r90 r91 138 138 139 139 if count(theResult) > 0 then 140 put "No differences found for member: " & memref.name && "(" & memref & ")" 141 140 if theResult[1] contains "no such file or directory" then 141 put theResult[1] 142 else 143 put "No differences found for member: " & memref.name && "(" & memref & ")" 144 end if 142 145 else 143 146
Note: See TracChangeset
for help on using the changeset viewer.
