Added post-checkout hook to clear build files

This commit is contained in:
Jef Roosens 2020-12-26 12:47:18 +01:00
parent f315834f03
commit 02213f5f57

4
.hooks/post-checkout Executable file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env sh
# Remove the build directory after checking out a branch
rm -rf build > /dev/null 2>&1