Check-in [7ff513e315]
Overview
| Comment: | Remove $optionalInstall check (now in $task rule) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
7ff513e31517362ac4a919fabcd3d380 |
| User & Date: | mario on 2016-12-10 12:21:42 |
| Other Links: | manifest | tags |
Context
|
2016-12-10
| ||
| 12:22 | Better window presence check for taskkill check-in: 41a5f3a096 user: mario tags: trunk | |
| 12:21 | Remove $optionalInstall check (now in $task rule) check-in: 7ff513e315 user: mario tags: trunk | |
| 12:20 | Check for "theme" key to exist in conf.* check-in: 5fcd7309eb user: mario tags: trunk | |
Changes
Modified dev/install_python_gtk.ps1 from [1029927d2c] to [6992f65b66].
| ︙ | ︙ | |||
334 335 336 337 338 339 340 |
$t.found = $t.testpth
}
elseif ($t.regkey -and (Test-Path $t.regkey)) {
$t.found = "installer/registry"
}
}
if (!$t.found) {
| < | | < | 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
$t.found = $t.testpth
}
elseif ($t.regkey -and (Test-Path $t.regkey)) {
$t.found = "installer/registry"
}
}
if (!$t.found) {
Write-Host " - $($t.title) not found"
$result = 0;
}
else {
Write-Host -n " + $($t.title) found " # and display shortened path:
Write-Host -f DarkGray "($($t.found -replace '(?<!^.{1,4})(\\[^\\]+(?=\\)){2,5}(?!.?$)', '...'))"
}
}
if ($result) {
|
| ︙ | ︙ |