libctf 0.3.1

SDK intended for use with CTF-rs, but is designed to be repurposed by others to easily extend functionality for other CTF related projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Running config file for direnv to use
# Sets local aliases for the project
AUTOENV_ENABLE_LEAVE=1

git() {
  case $1 in
    # If git commit, then use 1Password to load ENV tokens
    commit)
      shift
      command op run --env-file="./op.env" -- git commit "$@"
      ;;
    *)
      command git "$@";;
  esac
}