chore(ST3): release 3.0.0.3065

This commit is contained in:
Iristyle
2014-09-15 10:35:41 -07:00
parent 5f60cddcf7
commit cb6feb525e
2 changed files with 10 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
<metadata>
<id>SublimeText3</id>
<title>Sublime Text 3</title>
<version>3.0.0.3059</version>
<version>3.0.0.3065</version>
<authors>Jon Skinner</authors>
<owners>Ethan J. Brown</owners>
<summary>Sublime Text 3 is a sophisticated text editor for code, html and prose. You'll love the slick user interface and extraordinary features.</summary>

View File

@@ -1,5 +1,5 @@
$package = 'SublimeText3'
$build = '3059'
$build = '3065'
$installFolder = 'Sublime Text 3'
try {
@@ -10,7 +10,15 @@ try {
Select -First 1
# only way to test for installation of this version is by path on disk
$found = $false
if ($installedPath -and (Test-Path $installedPath))
{
$exe = Join-Path $installedPath 'sublime_text.exe'
$version = (Get-Command $exe).FileVersionInfo.ProductVersion
$found = ($version -eq $build)
}
if ($found)
{
Write-Host "$package is already installed to $installedPath"
}