Skip to content

aminya/chocolatey-wabt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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