-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·21 lines (17 loc) · 841 Bytes
/
setup.sh
File metadata and controls
executable file
·21 lines (17 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
# Blatantly stolen one-liner to get the directory that this script is located in,
# rather than the location the script is called from.
script_dir="$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)/tools"
echo "Initialized from script directory: $script_dir"
# Create aliases for the script directory scripts
alias cleanup-all="$script_dir/cleanup.sh"
alias commit-analysis="$script_dir/commit-analysis.sh"
alias create-repo="$script_dir/create-repo.sh"
alias create-bug="$script_dir/create-bug.sh"
alias get-buggy="$script_dir/get-buggy.sh"
alias get-fixed="$script_dir/get-fixed.sh"
alias get-tested="$script_dir/get-tested.sh"
alias get-repo="$script_dir/get-repo.sh"
alias get-bug-id="$script_dir/get-bug-id.sh"
alias get-repo-id="$script_dir/get-repo-id.sh"
alias run-tested="$script_dir/run-tested.sh"