tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

conda.sh (255B)


      1 #!/usr/bin/env bash
      2 set -eux -o pipefail
      3 if [[ ! -d conda ]]; then
      4    git clone https://github.com/conda/conda
      5 fi
      6 pushd conda && trap popd EXIT
      7 git pull
      8 set +eu
      9 source dev/start
     10 set -eu
     11 pip install -e ../../
     12 pytest -m "not integration and not installed"