Files
ChocolateyPackages/SublimeText3.PackageControl/tools/chocolateyInstall.ps1
Iristyle aabdb2b6ca feat: Sublime Text 3 package control 2.0.0-alpha9
- requires a git clone instead of a simple package file download now
2013-07-23 17:01:20 -04:00

20 lines
438 B
PowerShell

function Get-CurrentDirectory
{
$thisName = $MyInvocation.MyCommand.Name
[IO.Path]::GetDirectoryName((Get-Content function:$thisName).File)
}
try {
$package = 'SublimeText3.PackageControl'
$current = Get-CurrentDirectory
. (Join-Path $current 'SublimeHelpers.ps1')
Install-SublimePackageControl -Version 3
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}