morpheusv2

A Matrix client written in Go-QT
git clone git://archive.git.mtrnord.blog/Nordgedanken/morpheusv2.git
Log | Files | Refs | README | LICENSE

chocolateyInstall.ps1 (330B)


      1 $packageName = '{{.Choco.ID}}'
      2 $fileType = 'msi'
      3 $silentArgs = '/quiet';
      4 $scriptPath =  $(Split-Path $MyInvocation.MyCommand.Path);
      5 $fileFullPath = Join-Path $scriptPath '{{.Choco.MsiFile}}';
      6 
      7 Install-ChocolateyInstallPackage $packageName $fileType $silentArgs $fileFullPath -checksum '{{.Choco.MsiSum}}' -checksumType = 'sha256'