Skip to content

Commit

Permalink
Merge pull request #2209 from digitaldrummerj/fix/webstorm-uninstall
Browse files Browse the repository at this point in the history
(webstorm) fix: webstorm uninstall script
  • Loading branch information
pauby authored Jul 22, 2023
2 parents 0027c3e + 31e6abe commit 91d31d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions automatic/webstorm/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ New-Item -ItemType Directory -Force -Path $installDir

$arguments = @{
packageName = $env:ChocolateyPackageName
softwareName = 'JetBrains WebStorm*'
url = 'https://download.jetbrains.com/webstorm/WebStorm-2023.1.4.exe'
checksum = 'e300885fa6a319aa6f26e61f807876d3e7b7da995483b3e68d95c6d40e383d1a'
softwareName = 'WebStorm *'
url = 'https://download.jetbrains.com/webstorm/WebStorm-2023.1.exe'
checksum = 'a9e9024d5373020dc749510b576ee1fc4226240cbc8bf4de128874dd45f06e3c'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = $silentArgs
Expand Down
2 changes: 1 addition & 1 deletion automatic/webstorm/tools/ChocolateyUnInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$ErrorActionPreference = 'Stop'

$packageName = 'WebStorm'
$softwareName = 'JetBrains WebStorm*'
$softwareName = 'WebStorm *'
$installerType = 'exe'

$silentArgs = '/S'
Expand Down

0 comments on commit 91d31d4

Please sign in to comment.