this repo has no description
0
fork

Configure Feed

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

Delete tmpdir after precommit hook

+1 -2
+1 -2
.config/yadm/hooks/pre_commit
··· 3 3 set -o nounset 4 4 5 5 tmpdir=$(mktemp -d) 6 - # trap 'rm -rf $tmpdir' EXIT 6 + trap 'rm -rf $tmpdir' EXIT 7 7 trap 'echo ; exit -2' INT 8 - echo "$tmpdir" 9 8 10 9 # Start from the base yadm directory 11 10 cd "$(dirname "${BASH_SOURCE[0]}")" || exit_with_error "Failed to find yadm directory!"