Skip to content

Instantly share code, notes, and snippets.

@y0ug
Last active August 29, 2015 14:07
Show Gist options
  • Save y0ug/850cf961bf5383446b8e to your computer and use it in GitHub Desktop.
Save y0ug/850cf961bf5383446b8e to your computer and use it in GitHub Desktop.
$path_irma = $env:SystemDrive + '\irma'
$path_probe = $path_irma + '\irma-probe'
If(Test-Path $path_irma) {
cd $path_probe
git pull
git fetch --recurse-submodules
} Else {
New-Item -path $path_irma -type directory
cd $path_irma
git clone --recursive https://github.com/quarkslab/irma-probe
cd $path_probe
}
cd $path_probe
pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment