Skip to content

Commit

Permalink
Update manifest and install script based on feedback from package rev…
Browse files Browse the repository at this point in the history
…iew process
  • Loading branch information
j--wong committed Jan 3, 2017
1 parent ac43455 commit 1fb92b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions packaging/chocolatey/tools/chocolateyinstall.ps1
@@ -1,13 +1,14 @@
$ErrorActionPreference = 'Stop';

$packageName= 'unicreds' # arbitrary name for the package, used in messages
$packageName= 'unicreds'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = '{{DownloadUrl}}' # download url for 32-bit
$url64 = 'https://github.com/Versent/unicreds/releases/download/1.5.1/unicreds_1.5.1_windows_amd64.tar.gz' #
$url64 = 'https://github.com/Versent/unicreds/releases/download/1.5.1/unicreds_1.5.1_windows_amd64.tar.gz'

Install-ChocolateyZipPackage -PackageName $packageName `
-Url64 $url64 `
-UnzipLocation $toolsDir
-UnzipLocation $toolsDir `
-ChecksumType 'md5' `
-Checksum64 '75D8B2496675A2AFDC41F865472AB18A'

$filename = [System.IO.Path]::GetFileNameWithoutExtension($(Split-Path $url64 -Leaf))

Expand Down
Empty file.
2 changes: 1 addition & 1 deletion packaging/chocolatey/unicreds.nuspec
Expand Up @@ -5,7 +5,7 @@
<title>unicreds</title>
<version>1.5.1</version>
<authors>wolfeidau</authors>
<owners>wolfeidau</owners>
<owners>jwong</owners>
<summary>unicreds is a CLI which manages secrets in AWS using DynamoDB and KMS. https://github.com/Versent/unicreds</summary>
<description>
Unicreds is a command line tool to manage secrets within an AWS account, the aim is to keep securely stored with your systems and data so you don't have to manage them externally. It uses DynamoDB and KMS to store and encrypt these secrets. Access to these keys is controlled using IAM.
Expand Down

0 comments on commit 1fb92b6

Please sign in to comment.