Skip to content

Commit b351dcf

Browse files
committed
Release v.4.11.0 is published on Choco
1 parent 35b4a2b commit b351dcf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/chocolatey/publish.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
echo off
22
rem choco apikey --key ???????? --source https://push.chocolatey.org/
33

4-
choco push cs-script.4.11.0.nupkg --source https://push.chocolatey.org/
4+
choco push cs-script.4.11.1.nupkg --source https://push.chocolatey.org/
55
pause

src/chocolatey/tools/chocolateyInstall.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
$packageName = 'cs-script'
2-
$url = 'https://github.com/oleg-shilo/cs-script/releases/download/v4.11.0.0/cs-script.win.v4.11.0.0.7z'
2+
$url = 'https://github.com/oleg-shilo/cs-script/releases/download/v4.11.1.0/cs-script.win.v4.11.1.0.7z'
33

44
try {
55
$installDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
66

7-
$checksum = '38AA8628A5021E71F40E606E6FCE93201B66A5F04ADCD973520081EA38153966'
7+
$checksum = 'A8A87E0A5621A909141F67FF95A99A5C0F34328D63E6D9DB02C5AF87F6C8DD92'
88
$checksumType = "sha256"
99

1010
function stop-server

src/chocolatey/update_package.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
ServicePointManager.Expect100Continue = true;
1010
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
1111

12-
var url = "https://github.com/oleg-shilo/cs-script/releases/download/v4.11.0.0/cs-script.win.v4.11.0.0.7z";
12+
var url = "https://github.com/oleg-shilo/cs-script/releases/download/v4.11.1.0/cs-script.win.v4.11.1.0.7z";
1313

1414
var installScript = @"tools\chocolateyInstall.ps1";
1515

@@ -37,4 +37,4 @@ string calcChecksum(string url)
3737

3838
var checksum = cmd.run(@"C:\ProgramData\chocolatey\tools\checksum.exe", "-t sha256 -f \"" + file + "\"", echo: false).Trim();
3939
return checksum;
40-
}
40+
}

0 commit comments

Comments
 (0)