37 lines
1002 B
PowerShell
37 lines
1002 B
PowerShell
$package = 'DartEditor'
|
|
|
|
try {
|
|
$params = @{
|
|
PackageName = $package;
|
|
FileType = 'zip';
|
|
Url = 'https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-win32-32.zip';
|
|
Url64bit = 'https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-win32-64.zip';
|
|
UnzipLocation = Join-Path $Env:SystemDrive 'tools';
|
|
}
|
|
|
|
$binRoot = Join-Path $Env:SystemDrive $Env:Chocolatey_Bin_Root
|
|
if (Test-Path $binRoot)
|
|
{
|
|
$params.UnzipLocation = $binRoot
|
|
}
|
|
|
|
if (!(Test-Path($params.UnzipLocation)))
|
|
{
|
|
New-Item $params.UnzipLocation -Type Directory | Out-Null
|
|
}
|
|
|
|
Install-ChocolateyZipPackage @params
|
|
|
|
$dartPath = Join-Path $params.UnzipLocation 'dart'
|
|
Get-ChildItem $dartPath -Filter *.exe -Recurse |
|
|
? { $_.Name -match 'dart' } |
|
|
% {
|
|
Generate-BinFile ($_.Name -replace '\.exe', '') $_.FullName
|
|
}
|
|
|
|
Write-ChocolateySuccess $package
|
|
} catch {
|
|
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
|
throw
|
|
}
|