blob: 047efd945a86b5d62a6816ac7f6ca5d949c1d688 [file] [log] [blame]
Mircea Trofina2907702021-12-14 00:02:021#!/bin/bash
2
3echo "This script deletes `benchmark`, clones it from github, together"
4echo "with its dependencies. It then removes .git* files and dirs."
5echo "NOTE!!!"
6echo "Please double-check the benchmark github wiki for any changes"
7echo "to dependencies. Currently, these are limited to googletest."
8echo
9read -p "Press a key to continue, or Ctrl+C to cancel"
10
11rm -rf benchmark
12git clone https://github.com/google/benchmark.git
13rm -rf benchmark/.git*
Mircea Trofin48d86842021-12-14 16:07:2914find benchmark/ -name BUILD -delete
15find benchmark/ -name BUILD.bazel -delete
Jordan Rupprechtcc7544e2024-03-05 19:31:5716find benchmark/ -name WORKSPACE -delete
Mircea Trofina2907702021-12-14 00:02:0217