Skip to content

Commit

Permalink
AU: 1 updated - boxcli
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Aug 8, 2023
1 parent c54b831 commit 9a4791e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion automatic/boxcli/boxcli.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"latest": "3.9.1",
"latest": "3.9.2",
"1.1": "1.1.1.20181017",
"1.0": "1.0.2",
"1.2": "1.2.0",
Expand Down
8 changes: 5 additions & 3 deletions automatic/boxcli/boxcli.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>boxcli</id>
<version>3.9.1</version>
<version>3.9.2</version>
<packageSourceUrl>https://github.com/admiringworm/chocolatey-packages/tree/master/automatic/boxcli</packageSourceUrl>
<owners>AdmiringWorm, William Higgs</owners>
<title>Box CLI</title>
<authors>Box</authors>
<projectUrl>https://developer.box.com/</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/AdmiringWorm/chocolatey-packages@507f445e404eb629632365875da50972699c9837/automatic/boxcli/icons/boxcli.png</iconUrl>
<copyright>©2018 Box</copyright>
<licenseUrl>https://github.com/box/boxcli/blob/v3.9.1/LICENSE</licenseUrl>
<licenseUrl>https://github.com/box/boxcli/blob/v3.9.2/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/box/boxcli</projectSourceUrl>
<docsUrl>https://developer.box.com/reference</docsUrl>
Expand All @@ -30,7 +30,9 @@ Box is a cloud-based enterprise content management platform trusted by thousands
<releaseNotes>[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/boxcli/Changelog.md)

## Software Release Notes
</releaseNotes>
### Bug Fixes

* Fix escaped slashes when passing an input to command ([#486](https://github.com/box/boxcli/issues/486)) ([7670210](https://github.com/box/boxcli/commit/7670210ffb5c38cef8dd153e823029d5237080b6))</releaseNotes>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
</dependencies>
Expand Down
12 changes: 6 additions & 6 deletions automatic/boxcli/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://github.com/box/boxcli/releases/tag/v3.9.1>
location on <https://github.com/box/boxcli/releases/tag/v3.9.2>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/box/boxcli/releases/download/v3.9.1/box-v3.9.1-x86.exe>
64-Bit software: <https://github.com/box/boxcli/releases/download/v3.9.1/box-v3.9.1-x64.exe>
32-Bit software: <https://github.com/box/boxcli/releases/download/v3.9.2/box-v3.9.2-x86.exe>
64-Bit software: <https://github.com/box/boxcli/releases/download/v3.9.2/box-v3.9.2-x64.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: EB9A7D05C7F8D7BC7BA085304F22AF5D38D5EDA0CAC0C54A6A67AF24306DAD5A
checksum64: 04EBC1FDB4A37B6AF069D262A873476DE311ECE15F28156A387B96EF44B170B7
checksum32: E6E30FC30E8447E9C1F50D808916B0A4B4D4989A35AD20552E8C5AF25DE2830C
checksum64: 448C2C800904A7BDE2CABD52E723F42E83E877BF843DB6B70F162DB4353543AA

The file 'LICENSE.txt' has been obtained from <https://github.com/box/boxcli/blob/v3.9.1/LICENSE>
The file 'LICENSE.txt' has been obtained from <https://github.com/box/boxcli/blob/v3.9.2/LICENSE>
4 changes: 2 additions & 2 deletions automatic/boxcli/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\box-v3.9.1-x86.exe"
file64 = "$toolsPath\box-v3.9.1-x64.exe"
file = "$toolsPath\box-v3.9.2-x86.exe"
file64 = "$toolsPath\box-v3.9.2-x64.exe"
softwareName = '@box/cli'
silentArgs = "/S"#
validExitCodes = @(0, 3010, 1641)
Expand Down

0 comments on commit 9a4791e

Please sign in to comment.