Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 961 Bytes

README.md

File metadata and controls

43 lines (34 loc) · 961 Bytes

chocolatey-wabt

Chocolatey package for wabt

Install

Install chocolatey from here then:

choco install wabt

Note: The tools are installed in "C:/tools/wabt-$version".

Uninstall

choco uninstall wabt

Note: The tools are removed from "C:/tools/wabt-$version".

Install without chocolatey

You should have git installed. These scripts all run in PowerShell.

  1. Clone this repository:
git clone https://github.com/aminya/chocolatey-wabt.git
cd chocolatey-wabt\tools
  1. run chocolateyInstall
.\chocolateyInstall.ps1

This installs the pre-specified version. If you want to install a certain version first set $env:chocolateyPackageVersion environment variable and then run install:

$env:chocolateyPackageVersion="1.0.23"
.\chocolateyInstall.ps1

Uninstall without chocolatey

$env:chocolateyPackageVersion="1.0.23"
.\chocolateyUninstall.ps1