mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
71 lines
1.2 KiB
Bash
71 lines
1.2 KiB
Bash
|
#!/usr/bin/env bash
|
||
|
# Pre-reqs:
|
||
|
# - git
|
||
|
set -e
|
||
|
|
||
|
FIXTURE_DIR="linux_clean"
|
||
|
# Clone from burntsushi's fork so that we always get the same corpus *and* still
|
||
|
# do a shallow clone. Shallow clones are much much cheaper than full
|
||
|
# clones.
|
||
|
REPO_URL="git://github.com/BurntSushi/linux"
|
||
|
|
||
|
if [[ $# -eq 0 ]]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
command=$1
|
||
|
|
||
|
base_dir="/tmp/benchsuite"
|
||
|
if [[ $# -ge 2 ]]; then
|
||
|
base_dir=$2
|
||
|
fi
|
||
|
|
||
|
root_dir="${base_dir}/$FIXTURE_DIR"
|
||
|
out_file="$root_dir"
|
||
|
log_path="${base_dir}/$FIXTURE_DIR.log"
|
||
|
|
||
|
function path() {
|
||
|
if [[ -e $out_file ]]; then
|
||
|
echo $out_file
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
function clear() {
|
||
|
rm -Rf ${root_dir} ${log_path}
|
||
|
}
|
||
|
|
||
|
function download() {
|
||
|
if [[ ! -e $out_file ]]; then
|
||
|
mkdir -p ${root_dir}
|
||
|
echo "Downloading $FIXTURE_DIR" >> ${log_path}
|
||
|
git clone --depth 1 $REPO_URL $root_dir >> ${log_path}
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
function version() {
|
||
|
if [[ -e $out_file ]]; then
|
||
|
pushd $root_dir >> ${log_path}
|
||
|
echo "linux `git rev-parse HEAD`"
|
||
|
popd >> ${log_path}
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
case $command in
|
||
|
path)
|
||
|
echo $(path)
|
||
|
;;
|
||
|
clear)
|
||
|
echo $(clear)
|
||
|
;;
|
||
|
version)
|
||
|
echo $(version)
|
||
|
;;
|
||
|
download)
|
||
|
download
|
||
|
echo $(path)
|
||
|
;;
|
||
|
*)
|
||
|
>&2 echo "Invalid command: $command"
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|