Skip to content

Building a specific version

Vinicius Fortuna edited this page Nov 14, 2016 · 1 revision

This page explains how to build any given version of the uProxy Chrome extensions or Firefox Add-on

VERSION_TAG=v0.9.10
sudo apt-get update && apt-get install yarn
git clone https://github.com/uProxy/uproxy.git /tmp/uproxy
cd /tmp/uproxy
git checkout $VERSION_TAG
yarn && yarn run grunt -- --force dist

The files will be found at:

  • /tmp/uproxy/build/dist/chrome/uproxy-chrome-app.zip
  • /tmp/uproxy/build/dist/chrome/uproxy-chrome-extension.zip
  • /tmp/uproxy/build/dist/[email protected]

Notice that the Chrome files get repackaged when published to become the CRX files.

Clone this wiki locally