12345678910111213 |
- #!/bin/bash
- # We go to GPTH/scripts/../../(parent folder)
- cd "$(dirname "$0")"
- cd ../..
- echo "Working in parent folder $(pwd)"
- # Download test repo at certain tag
- # Change this tag in future when test repo changes
- echo "Cloning test data repo..."
- git clone --depth 1 --branch v0.1.1 https://github.com/TheLastGimbus/__takeout_helper_test_data__.git
- # Now, run GPTH on it!
|