Changeset 1715
- Timestamp:
- 10/29/08 15:02:20 (2 months ago)
- Files:
-
- 1 modified
-
cobra/trunk/Source/InstallFromWorkspace.cobra (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Source/InstallFromWorkspace.cobra
r1714 r1715 287 287 def locateGacUtil 288 288 .startStage('Locate gacutil.exe') 289 slash = .slash 289 290 gacutil = 'gacutil' 290 291 p = Process() … … 314 315 programFilesDir = Environment.getFolderPath(Environment.SpecialFolder.ProgramFiles) 315 316 for dir in dirs 316 path = '[programFilesDir] \\[dir][.slash][gacutil]'317 path = '[programFilesDir][slash][dir][slash][gacutil]' 317 318 print 'checking:', path 318 319 if File.exists(path) … … 329 330 drive = drive[:1] # normalize to just one character 330 331 if drive <= 'B', continue 331 path = '[drive]: \\Program Files\\[dir][.slash][gacutil]'332 path = '[drive]:[slash]Program Files[slash][dir][slash][gacutil]' 332 333 print 'checking:', path 333 334 if File.exists(path)
