this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add pre_commit and post_pull hooks

For now, just run shellcheck in pre_commit and bootstrap in post_pull

+16
+8
.config/yadm/hooks/post_pull
··· 1 + #!/bin/bash 2 + 3 + set -o errexit 4 + set -o nounset 5 + 6 + if [[ $YADM_HOOK_EXIT == 0 ]]; then 7 + yadm bootstrap 8 + fi
+8
.config/yadm/hooks/pre_commit
··· 1 + #!/bin/bash 2 + 3 + set -o errexit 4 + set -o nounset 5 + 6 + YADM_DIR=~/.config/yadm 7 + 8 + shellcheck $YADM_DIR/bootstrap $YADM_DIR/hooks/*