Skip to content

Commit

Permalink
AU: 1 updated - kitty
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Mar 14, 2018
1 parent c0c9fc5 commit 120c94f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions automatic/kitty/kitty.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>kitty</id>
<version>0.70.0.1</version>
<version>0.70.0.2</version>
<title>KiTTY</title>
<authors>Cyril Dupont</authors>
<owners>chocolatey, Andre-Patrick Bubel, Miodrag Milic</owners>
<licenseUrl>https://raw.githubusercontent.com/majkinetor/au-packages/master/kitty/legal/LICENCE.TXT</licenseUrl>
<projectUrl>http://www.9bis.net/kitty/</projectUrl>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/8d5f606c792f368dcb854727252429e4aaa13516/icons/kitty.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description><![CDATA[KiTTY is a fork of PuTTY (started from version 0.62 beta), the most popular Telnet and SSH client for Windows and Unix. It runs on Windows and it has an impressive collection of one of the most requested features that are missing from PuTTY.
<description><![CDATA[KiTTY is a fork of PuTTY (started from version 0.62 beta), the most popular Telnet and SSH client for Windows and Unix. It runs on Windows and it has an impressive collection of one of the most requested features that are missing from PuTTY.
## Features
Expand Down
2 changes: 1 addition & 1 deletion automatic/kitty/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if ($pp.Portable) {
Write-Host 'Setting portable mode'

$iniPath = Join-Path $toolsPath 'kitty.ini'
if (Test-Path $iniPath) { $ini = gc $iniPath -Encoding ascii -ea 0 | Out-String }
if (Test-Path $iniPath) { $ini = Get-Content $iniPath -Encoding ascii -ea 0 | Out-String }
# kitty ini file doesn't seem to have any other option now
if ($ini -notmatch 'savemode=dir') { "[KiTTY]`nsavemode=dir" | Out-File -Encoding ascii $iniPath }
}

0 comments on commit 120c94f

Please sign in to comment.